Lines Matching refs:pixelPtr
167 float get16bitDepthComponent(deUint8* pixelPtr)
169 deUint16* value = reinterpret_cast<deUint16*>(pixelPtr);
173 float get24bitDepthComponent(deUint8* pixelPtr)
176 deUint32 value = (((deUint32)pixelPtr[0]) << (!littleEndian * 16u)) |
177 (((deUint32)pixelPtr[1]) << 8u) |
178 (((deUint32)pixelPtr[2]) << ( littleEndian * 16u));
182 float get32bitDepthComponent(deUint8* pixelPtr)
184 return *(reinterpret_cast<float*>(pixelPtr));
1063 deUint8* pixelPtr = static_cast<deUint8*>(m_bufferMemory->getHostPtr());
1097 float depth = (*getDepthComponent)(pixelPtr);
1098 pixelPtr += pixelStep;
1150 deUint8* pixelPtr = static_cast<deUint8*>(m_bufferMemory->getHostPtr());
1164 deUint8 stencil = *pixelPtr++;