use m_ prefix for compositor class members (all compositor operations).

This commit is contained in:
2012-06-26 01:22:05 +00:00
parent 7a0ab62d3f
commit 6a1d82490e
247 changed files with 2628 additions and 2626 deletions

View File

@@ -30,10 +30,10 @@ SetVectorOperation::SetVectorOperation() : NodeOperation()
void SetVectorOperation::executePixel(float *outputValue, float x, float y, PixelSampler sampler, MemoryBuffer *inputBuffers[])
{
outputValue[0] = this->x;
outputValue[1] = this->y;
outputValue[2] = this->z;
outputValue[3] = this->w;
outputValue[0] = this->m_x;
outputValue[1] = this->m_y;
outputValue[2] = this->m_z;
outputValue[3] = this->m_w;
}
void SetVectorOperation::determineResolution(unsigned int resolution[], unsigned int preferredResolution[])