Lines Matching refs:Format
247 tcu::Format::Bitfield<16> getAPIBitsStr (int value)
249 static const tcu::Format::BitDesc s_desc[] =
251 tcu::Format::BitDesc(EGL_OPENGL_BIT, "EGL_OPENGL_BIT"),
252 tcu::Format::BitDesc(EGL_OPENGL_ES_BIT, "EGL_OPENGL_ES_BIT"),
253 tcu::Format::BitDesc(EGL_OPENGL_ES2_BIT, "EGL_OPENGL_ES2_BIT"),
254 tcu::Format::BitDesc(EGL_OPENGL_ES3_BIT_KHR, "EGL_OPENGL_ES3_BIT_KHR"),
255 tcu::Format::BitDesc(EGL_OPENVG_BIT, "EGL_OPENVG_BIT"),
257 return tcu::Format::Bitfield<16>(value, &s_desc[0], &s_desc[DE_LENGTH_OF_ARRAY(s_desc)]);
260 tcu::Format::Bitfield<16> getSurfaceBitsStr (int value)
262 static const tcu::Format::BitDesc s_desc[] =
264 tcu::Format::BitDesc(EGL_PBUFFER_BIT, "EGL_PBUFFER_BIT"),
265 tcu::Format::BitDesc(EGL_PIXMAP_BIT, "EGL_PIXMAP_BIT"),
266 tcu::Format::BitDesc(EGL_WINDOW_BIT, "EGL_WINDOW_BIT"),
267 tcu::Format::BitDesc(EGL_MULTISAMPLE_RESOLVE_BOX_BIT, "EGL_MULTISAMPLE_RESOLVE_BOX_BIT"),
268 tcu::Format::BitDesc(EGL_SWAP_BEHAVIOR_PRESERVED_BIT, "EGL_SWAP_BEHAVIOR_PRESERVED_BIT"),
269 tcu::Format::BitDesc(EGL_VG_ALPHA_FORMAT_PRE_BIT, "EGL_VG_ALPHA_FORMAT_PRE_BIT"),
270 tcu::Format::BitDesc(EGL_VG_COLORSPACE_LINEAR_BIT, "EGL_VG_COLORSPACE_LINEAR_BIT"),
271 tcu::Format::BitDesc(EGL_LOCK_SURFACE_BIT_KHR, "EGL_LOCK_SURFACE_BIT_KHR"),
272 tcu::Format::BitDesc(EGL_OPTIMAL_FORMAT_BIT_KHR, "EGL_OPTIMAL_FORMAT_BIT_KHR"),
274 return tcu::Format::Bitfield<16>(value, &s_desc[0], &s_desc[DE_LENGTH_OF_ARRAY(s_desc)]);