/external/mesa3d/src/mesa/swrast/ |
H A D | s_linetemp.h | 38 * rasterization (see pixelPtr): 89 PIXEL_TYPE *pixelPtr; local 172 pixelPtr = (PIXEL_TYPE *) PIXEL_ADDRESS(x0,y0); 324 pixelPtr = (PIXEL_TYPE*) ((GLubyte*) pixelPtr + pixelXstep); 336 pixelPtr = (PIXEL_TYPE*) ((GLubyte*) pixelPtr + pixelYstep); 364 pixelPtr = (PIXEL_TYPE*) ((GLubyte*) pixelPtr + pixelYstep); 376 pixelPtr [all...] |
/external/mesa3d/src/mesa/drivers/x11/ |
H A D | xm_line.c | 154 #define PLOT(X,Y) *pixelPtr = pixel; 171 #define PLOT(X,Y) *pixelPtr = pixel; 188 #define PLOT(X,Y) *pixelPtr = pixel; 205 pixelPtr->r = color[RCOMP]; \ 206 pixelPtr->g = color[GCOMP]; \ 207 pixelPtr->b = color[BCOMP]; \ 225 #define PLOT(X,Y) *pixelPtr = pixel; 242 #define PLOT(X,Y) PACK_TRUEDITHER( *pixelPtr, X, Y, color[0], color[1], color[2] ); 286 *pixelPtr = pixel; \ 309 *pixelPtr [all...] |
/external/skia/src/codec/ |
H A D | SkSampledCodec.cpp | 289 void* pixelPtr = pixels; local 291 if (1 != this->codec()->getScanlines(pixelPtr, 1, rowBytes)) { 303 pixelPtr = SkTAddOffset<void>(pixelPtr, rowBytes); 314 void* pixelPtr = SkTAddOffset<void>(pixels, local 316 if (1 != this->codec()->getScanlines(pixelPtr, 1, rowBytes)) {
|
/external/skqp/src/codec/ |
H A D | SkSampledCodec.cpp | 289 void* pixelPtr = pixels; local 291 if (1 != this->codec()->getScanlines(pixelPtr, 1, rowBytes)) { 303 pixelPtr = SkTAddOffset<void>(pixelPtr, rowBytes); 314 void* pixelPtr = SkTAddOffset<void>(pixels, local 316 if (1 != this->codec()->getScanlines(pixelPtr, 1, rowBytes)) {
|
/external/deqp/external/vulkancts/modules/vulkan/texture/ |
H A D | vktSampleVerifierUtil.cpp | 772 void convertNormalizedFormat (const void* pixelPtr, 843 deUint64 pack = readChannel(pixelPtr, 0, baseTypeBytes); 866 chanUVal = readChannel(pixelPtr, chan * chanSize, chanSize); 886 void convertFloatFormat (const void* pixelPtr, 912 resultMin[compNdx] = resultMax[compNdx] = *((const float*)pixelPtr + chan); 916 convertFP16((const deUint16*) pixelPtr + chan, internalFormat, resultMin[compNdx], resultMax[compNdx]); 927 void convertFormat (const void* pixelPtr, 938 convertNormalizedFormat(pixelPtr, texFormat, internalFormat, resultMin, resultMax); 942 convertFloatFormat(pixelPtr, texFormat, internalFormat, resultMin, resultMax);
|
H A D | vktSampleVerifierUtil.hpp | 102 void convertFormat (const void* pixelPtr,
|
H A D | vktSampleVerifier.cpp | 99 const void* pixelPtr = DE_NULL; local 103 pixelPtr = m_levels[level].getPixelPtr(coord[0], layer, 0); 107 pixelPtr = m_levels[level].getPixelPtr(coord[0], coord[1], layer); 111 pixelPtr = m_levels[level].getPixelPtr(coord[0], coord[1], coord[2]); 114 convertFormat(pixelPtr, mapVkFormat(m_imParams.format), m_conversionPrecision, resultMin, resultMax);
|
/external/deqp/framework/common/ |
H A D | tcuTexture.cpp | 985 const deUint8* pixelPtr = (const deUint8*)getPixelPtr(x, y, z); local 991 return readRGBA8888Float(pixelPtr); 993 return readRGB888Float(pixelPtr); 996 #define UI8(OFFS, COUNT) ((*((const deUint8*)pixelPtr) >> (OFFS)) & ((1<<(COUNT))-1)) 997 #define UI16(OFFS, COUNT) ((*((const deUint16*)pixelPtr) >> (OFFS)) & ((1<<(COUNT))-1)) 998 #define UI32(OFFS, COUNT) ((*((const deUint32*)pixelPtr) >> (OFFS)) & ((1<<(COUNT))-1)) 1022 case TextureFormat::UNSIGNED_INT_999_E5_REV: return unpackRGB999E5(*((const deUint32*)pixelPtr)); 1057 result[c] = channelToFloat(pixelPtr + channelSize*((int)channelMap[c]), m_format.type); 1084 const deUint8* const pixelPtr = (const deUint8*)getPixelPtr(x, y, z); local 1091 return readRGBA8888Int(pixelPtr); 1186 const deUint8* const pixelPtr = (const deUint8*)getPixelPtr(x, y, z); local 1218 const deUint8* const pixelPtr = (const deUint8*)getPixelPtr(x, y, z); local 1251 deUint8* const pixelPtr = (deUint8*)getPixelPtr(x, y, z); local 1401 deUint8* const pixelPtr = (deUint8*)getPixelPtr(x, y, z); local 1507 deUint8* const pixelPtr = (deUint8*)getPixelPtr(x, y, z); local 1544 deUint8* const pixelPtr = (deUint8*)getPixelPtr(x, y, z); local [all...] |
/external/libvncserver/libvncclient/ |
H A D | tight.c | 529 CARDBPP *pixelPtr; local 575 pixelPtr = (CARDBPP *)&client->buffer[RFB_BUFFER_SIZE / 2]; 577 *pixelPtr++ =
|