Lines Matching refs:Format
285 tcu::Format::Bitfield<16> getAPIBitsStr (int value)
287 static const tcu::Format::BitDesc s_desc[] =
289 tcu::Format::BitDesc(EGL_OPENGL_BIT, "EGL_OPENGL_BIT"),
290 tcu::Format::BitDesc(EGL_OPENGL_ES_BIT, "EGL_OPENGL_ES_BIT"),
291 tcu::Format::BitDesc(EGL_OPENGL_ES2_BIT, "EGL_OPENGL_ES2_BIT"),
292 tcu::Format::BitDesc(EGL_OPENGL_ES3_BIT_KHR, "EGL_OPENGL_ES3_BIT_KHR"),
293 tcu::Format::BitDesc(EGL_OPENVG_BIT, "EGL_OPENVG_BIT"),
295 return tcu::Format::Bitfield<16>(value, &s_desc[0], &s_desc[DE_LENGTH_OF_ARRAY(s_desc)]);
298 tcu::Format::Bitfield<16> getSurfaceBitsStr (int value)
300 static const tcu::Format::BitDesc s_desc[] =
302 tcu::Format::BitDesc(EGL_PBUFFER_BIT, "EGL_PBUFFER_BIT"),
303 tcu::Format::BitDesc(EGL_PIXMAP_BIT, "EGL_PIXMAP_BIT"),
304 tcu::Format::BitDesc(EGL_WINDOW_BIT, "EGL_WINDOW_BIT"),
305 tcu::Format::BitDesc(EGL_MULTISAMPLE_RESOLVE_BOX_BIT, "EGL_MULTISAMPLE_RESOLVE_BOX_BIT"),
306 tcu::Format::BitDesc(EGL_SWAP_BEHAVIOR_PRESERVED_BIT, "EGL_SWAP_BEHAVIOR_PRESERVED_BIT"),
307 tcu::Format::BitDesc(EGL_VG_ALPHA_FORMAT_PRE_BIT, "EGL_VG_ALPHA_FORMAT_PRE_BIT"),
308 tcu::Format::BitDesc(EGL_VG_COLORSPACE_LINEAR_BIT, "EGL_VG_COLORSPACE_LINEAR_BIT"),
309 tcu::Format::BitDesc(EGL_LOCK_SURFACE_BIT_KHR, "EGL_LOCK_SURFACE_BIT_KHR"),
310 tcu::Format::BitDesc(EGL_OPTIMAL_FORMAT_BIT_KHR, "EGL_OPTIMAL_FORMAT_BIT_KHR"),
312 return tcu::Format::Bitfield<16>(value, &s_desc[0], &s_desc[DE_LENGTH_OF_ARRAY(s_desc)]);