- fixed pixel buffer logic on windows (wacky vc++ 2008 doesn't properly allocate memory on vector.reserve();

This commit is contained in:
Mark Vejvoda
2011-12-13 22:21:21 +00:00
parent dc4ba27048
commit 724d274367
3 changed files with 24 additions and 11 deletions

View File

@@ -229,7 +229,9 @@ public:
private:
static bool isPBOEnabled;
static int index;
static vector<unsigned int> pboIds;
static vector<uint32> pboIds;
void cleanup();
};
class BaseColorPickEntity {