Home
last modified time | relevance | path

Searched refs:PROFILE_CORE (Results 1 – 22 of 22) sorted by relevance

/external/deqp/external/openglcts/modules/gl/
Dgl3cTextureSizePromotion.cpp1243 { glu::ContextType(3, 0, glu::PROFILE_CORE), GL_R8, STR(GL_R8), false, true, 8, 0, 0, 0, 0, 0,
1245 …{ glu::ContextType(3, 1, glu::PROFILE_CORE), GL_R8_SNORM, STR(GL_R8_SNORM), false, true, 8, 0, 0, …
1247 { glu::ContextType(3, 0, glu::PROFILE_CORE), GL_R16, STR(GL_R16), false, true, 16, 0, 0, 0, 0, 0,
1249 …{ glu::ContextType(3, 1, glu::PROFILE_CORE), GL_R16_SNORM, STR(GL_R16_SNORM), false, true, 16, 0, …
1251 { glu::ContextType(3, 0, glu::PROFILE_CORE), GL_RG8, STR(GL_RG8), false, true, 8, 8, 0, 0, 0, 0,
1253 …{ glu::ContextType(3, 1, glu::PROFILE_CORE), GL_RG8_SNORM, STR(GL_RG8_SNORM), false, true, 8, 8, 0…
1255 …{ glu::ContextType(3, 0, glu::PROFILE_CORE), GL_RG16, STR(GL_RG16), false, true, 16, 16, 0, 0, 0, …
1257 …{ glu::ContextType(3, 1, glu::PROFILE_CORE), GL_RG16_SNORM, STR(GL_RG16_SNORM), false, true, 16, 1…
1259 …{ glu::ContextType(4, 4, glu::PROFILE_CORE), GL_R3_G3_B2, STR(GL_R3_G3_B2), false, true, 3, 3, 2, …
1261 { glu::ContextType(4, 4, glu::PROFILE_CORE), GL_RGB4, STR(GL_RGB4), false, true, 4, 4, 4, 0, 0, 0,
[all …]
Dgl4cTestPackages.hpp38 glu::ContextType renderContextType = glu::ContextType(4, 0, glu::PROFILE_CORE));
50 glu::ContextType renderContextType = glu::ContextType(4, 1, glu::PROFILE_CORE));
62 glu::ContextType renderContextType = glu::ContextType(4, 2, glu::PROFILE_CORE));
74 glu::ContextType renderContextType = glu::ContextType(4, 3, glu::PROFILE_CORE));
86 glu::ContextType renderContextType = glu::ContextType(4, 4, glu::PROFILE_CORE));
98 glu::ContextType renderContextType = glu::ContextType(4, 5, glu::PROFILE_CORE));
110 glu::ContextType renderContextType = glu::ContextType(4, 6, glu::PROFILE_CORE));
Dgl3cTestPackages.hpp40 glu::ContextType renderContextType = glu::ContextType(3, 0, glu::PROFILE_CORE));
56 glu::ContextType renderContextType = glu::ContextType(3, 1, glu::PROFILE_CORE));
68 glu::ContextType renderContextType = glu::ContextType(3, 2, glu::PROFILE_CORE));
79 glu::ContextType renderContextType = glu::ContextType(3, 3, glu::PROFILE_CORE));
Dgl3cTransformFeedbackOverflowQueryTests.cpp85 …u::contextSupports(m_context.getRenderContext().getType(), glu::ApiType(4, 0, glu::PROFILE_CORE))); in supportsTransformFeedback2()
92 …u::contextSupports(m_context.getRenderContext().getType(), glu::ApiType(4, 0, glu::PROFILE_CORE))); in supportsTransformFeedback3()
99 …u::contextSupports(m_context.getRenderContext().getType(), glu::ApiType(4, 0, glu::PROFILE_CORE))); in supportsGpuShader5()
106 …u::contextSupports(m_context.getRenderContext().getType(), glu::ApiType(4, 5, glu::PROFILE_CORE))); in supportsConditionalRenderInverted()
113 …u::contextSupports(m_context.getRenderContext().getType(), glu::ApiType(4, 4, glu::PROFILE_CORE))); in supportsQueryBufferObject()
Dgl3cCommonBugsTests.cpp1910 …t_min_context_type_ptr = (is_cull_distance_iteration) ? glu::ContextType(4, 5, glu::PROFILE_CORE) : in getTestIterationProperties()
1911 glu::ContextType(4, 1, glu::PROFILE_CORE); in getTestIterationProperties()
2050 …t_min_context_type_ptr = (is_cull_distance_iteration) ? glu::ContextType(4, 5, glu::PROFILE_CORE) : in getTestIterationProperties()
2051 glu::ContextType(4, 0, glu::PROFILE_CORE); in getTestIterationProperties()
2199 …t_min_context_type_ptr = (is_cull_distance_iteration) ? glu::ContextType(4, 5, glu::PROFILE_CORE) : in getTestIterationProperties()
2200 glu::ContextType(4, 1, glu::PROFILE_CORE); in getTestIterationProperties()
2235 *out_min_context_type_ptr = glu::ContextType(4, 1, glu::PROFILE_CORE); in getTestIterationProperties()
2329 *out_min_context_type_ptr = glu::ContextType(4, 1, glu::PROFILE_CORE); in getTestIterationProperties()
Dgl3cClipDistance.cpp91 …lu::contextSupports(m_context.getRenderContext().getType(), glu::ApiType(3, 0, glu::PROFILE_CORE))) in iterate()
150 …glu::ApiType(3, 1, glu::PROFILE_CORE))) /* OpenGL 3.1 Specification minimum value, see bug #4803 */ in MaxClipDistancesValueTest()
1037 …lu::contextSupports(m_context.getRenderContext().getType(), glu::ApiType(3, 1, glu::PROFILE_CORE))) in testClipVertexBuildingErrors()
/external/deqp/framework/opengl/
DgluRenderContext.hpp54 PROFILE_CORE, //!< OpenGL Core Profile enumerator
92 static ApiType core (int major, int minor) { return ApiType(major, minor, PROFILE_CORE); } in core()
192 … isContextTypeGLCore (ContextType type) { return type.getAPI().getProfile() == PROFILE_CORE; } in isContextTypeGLCore()
DgluRenderContext.cpp76 return requiredApiType.getProfile() == PROFILE_CORE && in contextSupports()
82 …return (requiredApiType.getProfile() == PROFILE_CORE || requiredApiType.getProfile() == PROFILE_CO… in contextSupports()
DgluStrUtil.cpp135 if (apiType.getProfile() == PROFILE_CORE) in operator <<()
DgluTexture.cpp859 …if (!(contextSupports(m_context.getType(), glu::ApiType(3, 3, glu::PROFILE_CORE)) && info->isExten… in init()
868 if (!contextSupports(m_context.getType(), glu::ApiType(3, 3, glu::PROFILE_CORE)) in init()
/external/deqp/framework/platform/osx/
DtcuOSXPlatform.cpp138 if (type.getAPI().getProfile() != glu::PROFILE_CORE) in getCGLProfile()
/external/deqp/external/openglcts/modules/common/
DglcConfigListEGL.cpp84 else if (type.getProfile() == glu::PROFILE_CORE) in getDefaultEglConfigList()
/external/deqp/modules/glshared/
DglsMemoryStressCase.cpp195 if (ctxType.getProfile() == glu::PROFILE_CORE) in TextureRenderer()
357 if (ctxType.getProfile() == glu::PROFILE_CORE) in BufferRenderer()
DglsTextureBufferCase.cpp800 if (glu::contextSupports(renderContext.getType(), glu::ApiType(3, 3, glu::PROFILE_CORE))) in logImplementationInfo()
965 if (!glu::contextSupports(m_renderCtx.getType(), glu::ApiType(3, 3, glu::PROFILE_CORE)) in init()
DglsDrawTest.cpp2192 if (ctxType.getProfile() == glu::PROFILE_CORE) in valid()
2932 if (apiType.getProfile() == glu::PROFILE_CORE) in valid()
DglsVertexArrayTests.cpp2038 const bool useVao = m_renderCtx.getType().getProfile() == glu::PROFILE_CORE; in iterate()
/external/deqp/framework/egl/
DegluGLUtil.cpp61 case glu::PROFILE_CORE: in apiRenderableType()
/external/deqp/framework/platform/surfaceless/
DtcuSurfacelessPlatform.cpp361 case glu::PROFILE_CORE: in EglRenderContext()
/external/deqp/framework/platform/win32/
DtcuWGL.cpp424 case glu::PROFILE_CORE: in Context()
/external/deqp/framework/platform/lnx/X11/
DtcuLnxX11GlxPlatform.cpp333 case glu::PROFILE_CORE: in createContext()
/external/deqp/external/openglcts/modules/runner/
DglcTestRunner.cpp497 case glu::PROFILE_CORE: in getTestRunParams()
/external/deqp/modules/egl/
DteglCreateContextExtTests.cpp209 glu::Profile profile = api == EGL_OPENGL_ES_API ? glu::PROFILE_ES : glu::PROFILE_CORE; in attribListToContextType()