Skip to content
Snippets Groups Projects
Commit 60f01c9e authored by Amorilia's avatar Amorilia
Browse files

Fixed compilation errors on gcc 4.6.

parent 1469b2f8
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
#include "NvTriStripObjects.h" #include "NvTriStripObjects.h"
#include "NvTriStrip.h" #include "NvTriStrip.h"
#include <string.h> // memset #include <string.h> // memset
#include <cstddef> // NULL
using namespace NvTriStrip; using namespace NvTriStrip;
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
#include <assert.h> #include <assert.h>
#include <vector> #include <vector>
#include <list> #include <list>
#include <cstddef> // NULL
#include "VertexCache.h" #include "VertexCache.h"
//Wrap these types in a namespace //Wrap these types in a namespace
......
...@@ -26,17 +26,17 @@ namespace triangle_stripper { ...@@ -26,17 +26,17 @@ namespace triangle_stripper {
class policy class policy
{ {
public: public:
policy(size_t MinStripSize, bool Cache); policy(std::size_t MinStripSize, bool Cache);
strip BestStrip() const; strip BestStrip() const;
void Challenge(strip Strip, size_t Degree, size_t CacheHits); void Challenge(strip Strip, std::size_t Degree, std::size_t CacheHits);
private: private:
strip m_Strip; strip m_Strip;
size_t m_Degree; std::size_t m_Degree;
size_t m_CacheHits; std::size_t m_CacheHits;
const size_t m_MinStripSize; const std::size_t m_MinStripSize;
const bool m_Cache; const bool m_Cache;
}; };
...@@ -44,7 +44,7 @@ private: ...@@ -44,7 +44,7 @@ private:
inline policy::policy(size_t MinStripSize, bool Cache) inline policy::policy(std::size_t MinStripSize, bool Cache)
: m_Degree(0), m_CacheHits(0), m_MinStripSize(MinStripSize), m_Cache(Cache) { } : m_Degree(0), m_CacheHits(0), m_MinStripSize(MinStripSize), m_Cache(Cache) { }
......
...@@ -28,8 +28,8 @@ public: ...@@ -28,8 +28,8 @@ public:
: m_A(A), m_B(B), m_C(C), m_StripID(0) { } : m_A(A), m_B(B), m_C(C), m_StripID(0) { }
void ResetStripID() { m_StripID = 0; } void ResetStripID() { m_StripID = 0; }
void SetStripID(size_t StripID) { m_StripID = StripID; } void SetStripID(std::size_t StripID) { m_StripID = StripID; }
size_t StripID() const { return m_StripID; } std::size_t StripID() const { return m_StripID; }
index A() const { return m_A; } index A() const { return m_A; }
index B() const { return m_B; } index B() const { return m_B; }
...@@ -40,7 +40,7 @@ private: ...@@ -40,7 +40,7 @@ private:
index m_B; index m_B;
index m_C; index m_C;
size_t m_StripID; std::size_t m_StripID;
}; };
...@@ -75,17 +75,17 @@ public: ...@@ -75,17 +75,17 @@ public:
strip() strip()
: m_Start(0), m_Order(ABC), m_Size(0) { } : m_Start(0), m_Order(ABC), m_Size(0) { }
strip(size_t Start, triangle_order Order, size_t Size) strip(std::size_t Start, triangle_order Order, std::size_t Size)
: m_Start(Start), m_Order(Order), m_Size(Size) { } : m_Start(Start), m_Order(Order), m_Size(Size) { }
size_t Start() const { return m_Start; } std::size_t Start() const { return m_Start; }
triangle_order Order() const { return m_Order; } triangle_order Order() const { return m_Order; }
size_t Size() const { return m_Size; } std::size_t Size() const { return m_Size; }
private: private:
size_t m_Start; std::size_t m_Start;
triangle_order m_Order; triangle_order m_Order;
size_t m_Size; std::size_t m_Size;
}; };
......
...@@ -19,7 +19,7 @@ namespace triangle_stripper { ...@@ -19,7 +19,7 @@ namespace triangle_stripper {
void policy::Challenge(strip Strip, size_t Degree, size_t CacheHits) void policy::Challenge(strip Strip, std::size_t Degree, std::size_t CacheHits)
{ {
if (Strip.Size() < m_MinStripSize) if (Strip.Size() < m_MinStripSize)
return; return;
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
namespace triangle_stripper namespace triangle_stripper
{ {
typedef size_t index; typedef std::size_t index;
typedef std::vector<index> indices; typedef std::vector<index> indices;
enum primitive_type enum primitive_type
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment