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

  /external/deqp/modules/egl/
teglRenderTests.cpp 347 #define PACK_FMT(R, G, B, A) (((R) << 24) | ((G) << 16) | ((B) << 8) | (A))
350 switch (PACK_FMT(colorBits.redBits, colorBits.greenBits, colorBits.blueBits, colorBits.alphaBits))
352 case PACK_FMT(8,8,8,8): return TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8);
353 case PACK_FMT(8,8,8,0): return TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8);
354 case PACK_FMT(4,4,4,4): return TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_SHORT_4444);
355 case PACK_FMT(5,5,5,1): return TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_SHORT_5551);
356 case PACK_FMT(5,6,5,0): return TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_SHORT_565);
362 #undef PACK_FMT
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFboInvalidateTests.cpp 101 #define PACK_FMT(R, G, B, A) (((R) << 24) | ((G) << 16) | ((B) << 8) | (A))
104 switch (PACK_FMT(pxFmt.redBits, pxFmt.greenBits, pxFmt.blueBits, pxFmt.alphaBits))
106 case PACK_FMT(8,8,8,8): return GL_RGBA8;
107 case PACK_FMT(8,8,8,0): return GL_RGB8;
108 case PACK_FMT(4,4,4,4): return GL_RGBA4;
109 case PACK_FMT(5,5,5,1): return GL_RGB5_A1;
110 case PACK_FMT(5,6,5,0): return GL_RGB565;
114 #undef PACK_FMT
    [all...]
  /external/deqp/framework/opengl/
gluTextureUtil.cpp 145 #define PACK_FMT(ORDER, TYPE) ((int(ORDER) << 16) | int(TYPE))
146 #define FMT_CASE(ORDER, TYPE) PACK_FMT(tcu::TextureFormat::ORDER, tcu::TextureFormat::TYPE)
148 switch (PACK_FMT(texFormat.order, texFormat.type))
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkImageUtil.cpp     [all...]

Completed in 499 milliseconds