HomeSort by relevance Sort by last modified time
    Searched refs:PVRT_MAX (Results 1 - 7 of 7) sorted by null

  /external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES3/
PVRTTextureAPI.cpp 697 int nBlocksDstW = PVRT_MAX((unsigned int)1, (nSize >> nLevel) / nElW);
698 int nBlocksDstH = PVRT_MAX((unsigned int)1, (nSize >> nLevel) / nElH);
699 int nBlocksSrcW = PVRT_MAX((unsigned int)1, (pIn->u32Width >> nLevel) / nElW);
700 int nBlocksSrcH = PVRT_MAX((unsigned int)1, (pIn->u32Height >> nLevel) / nElH);
923 uiMIPWidth=PVRT_MAX(1,uiMIPWidth>>1);
924 uiMIPHeight=PVRT_MAX(1,uiMIPHeight>>1);
952 uiMIPWidth=PVRT_MAX(1,uiMIPWidth>>1);
953 uiMIPHeight=PVRT_MAX(1,uiMIPHeight>>1);
1030 uiMIPWidth=PVRT_MAX(1,uiMIPWidth>>1);
1031 uiMIPHeight=PVRT_MAX(1,uiMIPHeight>>1)
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
PVRTTextureAPI.cpp 294 int nBlocksDstW = PVRT_MAX((unsigned int)1, (nSize >> nLevel) / nElW);
295 int nBlocksDstH = PVRT_MAX((unsigned int)1, (nSize >> nLevel) / nElH);
296 int nBlocksSrcW = PVRT_MAX((unsigned int)1, (pIn->u32Width >> nLevel) / nElW);
297 int nBlocksSrcH = PVRT_MAX((unsigned int)1, (pIn->u32Height >> nLevel) / nElH);
528 uiMIPWidth=PVRT_MAX(1,uiMIPWidth>>1);
529 uiMIPHeight=PVRT_MAX(1,uiMIPHeight>>1);
557 uiMIPWidth=PVRT_MAX(1,uiMIPWidth>>1);
558 uiMIPHeight=PVRT_MAX(1,uiMIPHeight>>1);
648 uiMIPWidth=PVRT_MAX(1,uiMIPWidth>>1);
649 uiMIPHeight=PVRT_MAX(1,uiMIPHeight>>1)
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTMap.h 43 return PVRT_MAX(m_Keys.SetCapacity(uiSize),m_Data.SetCapacity(uiSize));
PVRTGlobal.h 15 #define PVRT_MAX(a,b) (((a) > (b)) ? (a) : (b))
16 #define PVRT_CLAMP(x, l, h) (PVRT_MIN((h), PVRT_MAX((x), (l))))
PVRTTexture.cpp 128 len += PVRT_MAX(wTmp, wMin) * PVRT_MAX(hTmp, hMin);
359 PVRTuint32 uiWidth = PVRT_MAX(1,sTextureHeader.u32Width>>uiCurrentMIP);
360 PVRTuint32 uiHeight = PVRT_MAX(1,sTextureHeader.u32Height>>uiCurrentMIP);
361 PVRTuint32 uiDepth = PVRT_MAX(1,sTextureHeader.u32Depth>>uiCurrentMIP);
378 PVRTuint32 uiWidth = PVRT_MAX(1,sTextureHeader.u32Width>>iMipLevel);
379 PVRTuint32 uiHeight = PVRT_MAX(1,sTextureHeader.u32Height>>iMipLevel);
380 PVRTuint32 uiDepth = PVRT_MAX(1,sTextureHeader.u32Depth>>iMipLevel);
    [all...]
PVRTDecompress.cpp 717 int XTrueDim = PVRT_MAX(XDim,((Do2bitMode==1)?16:8));
718 int YTrueDim = PVRT_MAX(YDim,8);
    [all...]
PVRTModelPOD.cpp     [all...]

Completed in 792 milliseconds