Home
last modified time | relevance | path

Searched refs:pPixel (Results 1 – 9 of 9) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/memory/
DConvert.h370 …typename FormatTraits<DstFormat>::FormatT* pPixel = (typename FormatTraits<DstFormat>::FormatT*)pD… in ConvertPixelFromFloat() local
375 pPixel->a = outColor[3]; in ConvertPixelFromFloat()
377 pPixel->b = outColor[2]; in ConvertPixelFromFloat()
379 pPixel->g = outColor[1]; in ConvertPixelFromFloat()
381 pPixel->r = outColor[0]; in ConvertPixelFromFloat()
400 …typename FormatTraits<SrcFormat>::FormatT* pPixel = (typename FormatTraits<SrcFormat>::FormatT*)pS… in ConvertPixelToFloat() local
413 srcColor[3] = pPixel->a; in ConvertPixelToFloat()
415 srcColor[2] = pPixel->b; in ConvertPixelToFloat()
417 srcColor[1] = pPixel->g; in ConvertPixelToFloat()
419 srcColor[0] = pPixel->r; in ConvertPixelToFloat()
/external/mesa3d/src/amd/addrlib/core/
Daddrelemlib.h192 AddrDepthFormat format, const ADDR_FLT_32 comps[2], UINT_8 *pPixel) const;
196 const ADDR_FLT_32 comps[4], UINT_8 *pPixel) const;
203 ADDR_COMPONENT_FLAGS properties, UINT_32 resultBits, UINT_8* pPixel);
Daddrelemlib.cpp330 UINT_8* pPixel) ///< [out] a depth/stencil pixel value in Int32sToPixel() argument
354 pPixel[(j+start)^elementXor] = static_cast<UINT_8>(pComps[i] >> (8*j)); in Int32sToPixel()
372 byte = pPixel[i^elementXor] & ~(elemMask >> (8*i)); in Int32sToPixel()
373 pPixel[i^elementXor] = static_cast<UINT_8>(byte | ((elemMask & value) >> (8*i))); in Int32sToPixel()
392 UINT_8* pPixel ///< [out] depth pixel value in Flt32ToDepthPixel()
443 Int32sToPixel(2, values, fmt.compBit, fmt.compStart, properties, resultBits, pPixel ); in Flt32ToDepthPixel()
463 UINT_8* pPixel ///< [out] a red/green/blue/alpha pixel value in Flt32ToColorPixel()
530 properties, resultBits, pPixel); in Flt32ToColorPixel()
Daddrlib.cpp3772 pOut->pPixel); in Flt32ToDepthPixel()
3853 pOut->pPixel); in Flt32ToColorPixel()
/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTDecompress.cpp124 Pixel128S *pPixel, PVRTuint8 ui8Bpp) in interpolateColours() argument
161 pPixel[y*ui32WordWidth+x].red = (PVRTint32)((Result.red >> 7) + (Result.red >> 2)); in interpolateColours()
162 pPixel[y*ui32WordWidth+x].green = (PVRTint32)((Result.green >> 7) + (Result.green >> 2)); in interpolateColours()
163 pPixel[y*ui32WordWidth+x].blue = (PVRTint32)((Result.blue >> 7) + (Result.blue >> 2)); in interpolateColours()
164 pPixel[y*ui32WordWidth+x].alpha = (PVRTint32)((Result.alpha >> 5) + (Result.alpha >> 1)); in interpolateColours()
193 pPixel[y*ui32WordWidth+x].red = (PVRTint32)((Result.red >> 6) + (Result.red >> 1)); in interpolateColours()
194 pPixel[y*ui32WordWidth+x].green = (PVRTint32)((Result.green >> 6) + (Result.green >> 1)); in interpolateColours()
195 pPixel[y*ui32WordWidth+x].blue = (PVRTint32)((Result.blue >> 6) + (Result.blue >> 1)); in interpolateColours()
196 pPixel[y*ui32WordWidth+x].alpha = (PVRTint32)((Result.alpha >> 4) + (Result.alpha)); in interpolateColours()
/external/pdfium/core/fpdfapi/render/
Dcpdf_dibsource.cpp1082 const uint8_t* pPixel = pSrcLine + col * 3; in GetScanline() local
1083 alpha_channel[col * 4] = (pPixel[0] < m_pCompData[0].m_ColorKeyMin || in GetScanline()
1084 pPixel[0] > m_pCompData[0].m_ColorKeyMax || in GetScanline()
1085 pPixel[1] < m_pCompData[1].m_ColorKeyMin || in GetScanline()
1086 pPixel[1] > m_pCompData[1].m_ColorKeyMax || in GetScanline()
1087 pPixel[2] < m_pCompData[2].m_ColorKeyMin || in GetScanline()
1088 pPixel[2] > m_pCompData[2].m_ColorKeyMax) in GetScanline()
/external/pdfium/core/fxcodec/codec/
Dfx_codec_jpx_opj.cpp847 uint8_t* pPixel = pScanline + col * image->numcomps; in Decode() local
856 *pPixel = 0; in Decode()
858 *pPixel = (uint8_t)(src << -adjust_comps[channel]); in Decode()
866 uint8_t* pPixel = pScanline + col * image->numcomps; in Decode() local
875 *pPixel = (uint8_t)((src >> adjust_comps[channel])); in Decode()
884 *pPixel = (uint8_t)tmpPixel; in Decode()
/external/mesa3d/src/amd/addrlib/
Daddrinterface.h1787 UINT_8* pPixel; ///< Real depth value. Same data type as depth buffer. member
1846 UINT_8* pPixel; ///< Real color value. Same data type as color buffer. member
/external/swiftshader/third_party/PowerVR_SDK/Shell/
DPVRShell.cpp766 const unsigned char * pPixel = &pRow[3 * nX]; in PVRShellWriteBMPFile() local
769 fwrite(pPixel, 1, 3, fpDumpfile); in PVRShellWriteBMPFile()