Home
last modified time | relevance | path

Searched refs:PVRTint32 (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTModelPOD.h137 PVRTint32 nIdxTarget; /*!< Index of the target object */
149 PVRTint32 nIdxTarget; /*!< Index of the target object */
193PVRTint32 nIdx; /*!< Index into mesh, light or camera array, depending on which object list c…
195 PVRTint32 nIdxMaterial; /*!< Index of material used on this mesh */
197PVRTint32 nIdxParent; /*!< Index into MeshInstance array; recursively apply ancestor's transfor…
231 PVRTint32 nIdxTexDiffuse; /*!< Idx into pTexture for the diffuse texture */
232 PVRTint32 nIdxTexAmbient; /*!< Idx into pTexture for the ambient texture */
233 PVRTint32 nIdxTexSpecularColour; /*!< Idx into pTexture for the specular colour texture */
234 PVRTint32 nIdxTexSpecularLevel; /*!< Idx into pTexture for the specular level texture */
235 PVRTint32 nIdxTexBump; /*!< Idx into pTexture for the bump map */
[all …]
DPVRTDecompress.cpp42 PVRTint32 red,green,blue,alpha;
132 Pixel128S hP = {(PVRTint32)P.red,(PVRTint32)P.green,(PVRTint32)P.blue,(PVRTint32)P.alpha}; in interpolateColours()
133 Pixel128S hQ = {(PVRTint32)Q.red,(PVRTint32)Q.green,(PVRTint32)Q.blue,(PVRTint32)Q.alpha}; in interpolateColours()
134 Pixel128S hR = {(PVRTint32)R.red,(PVRTint32)R.green,(PVRTint32)R.blue,(PVRTint32)R.alpha}; in interpolateColours()
135 Pixel128S hS = {(PVRTint32)S.red,(PVRTint32)S.green,(PVRTint32)S.blue,(PVRTint32)S.alpha}; in interpolateColours()
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()
[all …]
DPVRTPrint3D.h320 static PVRTint32 CharacterCompareFunc(const void* pA, const void* pB);
329 static PVRTint32 KerningCompareFunc(const void* pA, const void* pB);
380 PVRTint32 nX;
381 PVRTint32 nY;
382 PVRTint32 nW;
383 PVRTint32 nH;
390 PVRTint32 iOffset; /*!< Kerning offset (in pixels) */
DPVRTPrint3D.cpp74 PVRTint32 CPVRTPrint3D::CharacterCompareFunc(const void* pA, const void* pB) in CharacterCompareFunc()
76 return (*(PVRTint32*)pA - *(PVRTint32*)pB); in CharacterCompareFunc()
86 PVRTint32 CPVRTPrint3D::KerningCompareFunc(const void* pA, const void* pB) in KerningCompareFunc()
183 uiDataSize = sizeof(PVRTint32) * m_uiNumCharacters; in ReadMetaBlock()
185 m_pYOffsets = new PVRTint32[m_uiNumCharacters]; in ReadMetaBlock()
259 m_pYOffsets = new PVRTint32[m_uiNumCharacters]; in LoadFontData()
865 PVRTint32 NextChar; in UpdateLine()
DPVRTGlobal.h153 typedef signed int PVRTint32; typedef
182 PVRTSIZEASSERT(PVRTint32, 4);
DPVRTTexture.h30 const PVRTint32 PVRTEX_TOPMIPLEVEL = 0;
31 const PVRTint32 PVRTEX_ALLMIPLEVELS = -1; //This is a special number used simply to return a tota…
703 PVRTuint32 PVRTGetTextureDataSize(PVRTextureHeaderV3 sTextureHeader, PVRTint32 iMipLevel=PVRTEX_ALL…
DPVRTTexture.cpp337 PVRTuint32 PVRTGetTextureDataSize(PVRTextureHeaderV3 sTextureHeader, PVRTint32 iMipLevel, bool bAll… in PVRTGetTextureDataSize()