- cleanup some color pick code

This commit is contained in:
Mark Vejvoda
2013-01-24 00:42:06 +00:00
parent 4cc9240996
commit bf7445903d
2 changed files with 18 additions and 2 deletions

View File

@@ -1462,7 +1462,7 @@ PixelBufferWrapper::~PixelBufferWrapper() {
const int colorSpacing = 8;
//unsigned char BaseColorPickEntity::nextColorID[COLOR_COMPONENTS] = {1, 1, 1, 1};
BaseColorPickEntity::ColorPickStruct BaseColorPickEntity::nextColorID = { colorSpacing, colorSpacing, colorSpacing };
BaseColorPickEntity::ColorPickStruct BaseColorPickEntity::nextColorID = ColorPickStruct(colorSpacing, colorSpacing, colorSpacing, colorSpacing);
vector<BaseColorPickEntity::ColorPickStruct> BaseColorPickEntity::nextColorIDReuseList;
Mutex BaseColorPickEntity::mutexNextColorID;
auto_ptr<PixelBufferWrapper> BaseColorPickEntity::pbo;