Home
last modified time | relevance | path

Searched refs:renderType (Results 1 – 25 of 27) sorted by relevance

12

/third_party/mesa3d/src/glx/tests/
Dfake_glx_screen.cpp53 struct glx_context *shareList, int renderType) in indirect_create_context() argument
56 (void) renderType; in indirect_create_context()
82 int renderType) in applegl_create_context() argument
84 return indirect_create_context(base, config_base, shareList, renderType); in applegl_create_context()
Dfake_glx_screen.h112 struct glx_context *shareList, int renderType) in create() argument
115 (void) renderType; in create()
/third_party/mesa3d/src/glx/
Dglxcmds.c236 int renderType) in validate_renderType_against_config() argument
240 return renderType == GLX_DONT_CARE; in validate_renderType_against_config()
242 switch (renderType) { in validate_renderType_against_config()
244 return (config->renderType & GLX_RGBA_BIT) != 0; in validate_renderType_against_config()
246 return (config->renderType & GLX_COLOR_INDEX_BIT) != 0; in validate_renderType_against_config()
248 return (config->renderType & GLX_RGBA_FLOAT_BIT_ARB) != 0; in validate_renderType_against_config()
250 return (config->renderType & GLX_RGBA_UNSIGNED_FLOAT_BIT_EXT) != 0; in validate_renderType_against_config()
272 gc->renderType = GLX_DONT_CARE; in glx_context_init()
321 unsigned code, int renderType) in CreateContext() argument
346 gc = applegl_create_context(psc, config, shareList, renderType); in CreateContext()
[all …]
Ddriwindows_glx.c122 struct glx_context *shareList, int renderType) in driwindows_create_context() argument
133 if (!validate_renderType_against_config(config_base, renderType)) in driwindows_create_context()
157 pcp->base.renderType = renderType; in driwindows_create_context()
187 uint32_t renderType = GLX_RGBA_TYPE; in driwindows_create_context_attribs() local
193 renderType = attribs[i * 2 + 1]; in driwindows_create_context_attribs()
207 if (!validate_renderType_against_config(config_base, renderType)) { in driwindows_create_context_attribs()
232 pcp->base.renderType = renderType; in driwindows_create_context_attribs()
Dindirect_glx.c260 struct glx_context *shareList, int renderType) in indirect_create_context() argument
263 const uint32_t attribs[] = { GLX_RENDER_TYPE, renderType }; in indirect_create_context()
286 int i, renderType = GLX_RGBA_TYPE; in indirect_create_context_attribs() local
300 renderType = val; in indirect_create_context_attribs()
333 gc->renderType = renderType; in indirect_create_context_attribs()
Dglxclient.h413 int renderType; member
481 int renderType);
770 struct glx_context *shareList, int renderType);
780 int renderType);
795 struct glx_context *shareList, int renderType);
Dglxconfig.c62 *value_return = !(mode->renderType & GLX_COLOR_INDEX_BIT); in glx_config_get()
139 *value_return = mode->renderType; in glx_config_get()
Ddri_common.h88 int renderType);
Ddri_common.c165 if (glxValue != config->renderType) in driConfigEqual()
665 int renderType) in dri_common_create_context() argument
668 uint32_t attribs[2] = { GLX_RENDER_TYPE, renderType }; in dri_common_create_context()
Dglxext.c424 config->renderType = *bp++ ? GLX_RGBA_BIT : GLX_COLOR_INDEX_BIT; in __glXInitializeVisualConfigFromTags()
469 config->renderType = *bp++ ? GLX_RGBA_BIT : GLX_COLOR_INDEX_BIT; in __glXInitializeVisualConfigFromTags()
471 config->renderType = GLX_RGBA_BIT; in __glXInitializeVisualConfigFromTags()
553 config->renderType = *bp++; in __glXInitializeVisualConfigFromTags()
Dglxconfig.h74 GLint renderType; member
Dapplegl_glx.c126 struct glx_context *shareList, int renderType) in applegl_create_context() argument
Ddri3_glx.c316 pcp->base.renderType = dca.render_type; in dri3_create_context_attribs()
Ddrisw_glx.c638 pcp->base.renderType = dca.render_type; in drisw_create_context_attribs()
Ddri2_glx.c241 pcp->base.renderType = dca.render_type; in dri2_create_context_attribs()
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fTextureBufferTests.cpp660 const RenderBits renderType = renderTypeCombinations[renderTypeNdx]; in createTextureBufferTests() local
661 …enderTypeGroup = new TestCaseGroup(context, toTestName(renderType).c_str(), toTestName(renderType)… in createTextureBufferTests()
670 …nderContext(), GL_RGBA8, size, 0, 0, RENDERBITS_NONE, MODIFYBITS_NONE, renderType, name.c_str(), n… in createTextureBufferTests()
679 …xt(), GL_RGBA8, bufferSize, 0, size, RENDERBITS_NONE, MODIFYBITS_NONE, renderType, name.c_str(), n… in createTextureBufferTests()
689 … GL_RGBA8, bufferSize, offset, size, RENDERBITS_NONE, MODIFYBITS_NONE, renderType, name.c_str(), n… in createTextureBufferTests()
749 const RenderBits renderType = renderTypeCombinations[renderTypeNdx]; in createTextureBufferTests() local
751 const string name (toTestName(renderType)); in createTextureBufferTests()
753 …getRenderContext(), GL_RGBA8, size, 0, 0, RENDERBITS_NONE, modifyType, renderType, name.c_str(), n… in createTextureBufferTests()
765 const RenderBits renderType = renderTypeCombinations[renderTypeNdx]; in createTextureBufferTests() local
766 …enderTypeGroup = new TestCaseGroup(context, toTestName(renderType).c_str(), toTestName(renderType)… in createTextureBufferTests()
[all …]
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
DCopyTexture3DTest.cpp98 GLenum renderType = 0; in testCopy() local
122 renderType = GL_RGBA8; in testCopy()
136 renderType = GL_RGBA8I; in testCopy()
151 renderType = GL_RGBA8UI; in testCopy()
163 renderType = GL_RGBA32F; in testCopy()
169 glRenderbufferStorage(GL_RENDERBUFFER, renderType, 1, 1); in testCopy()
183 if (renderType == GL_RGBA8) in testCopy()
239 else if (renderType == GL_RGBA32F) in testCopy()
251 else if (renderType == GL_RGBA8UI) in testCopy()
261 else if (renderType == GL_RGBA8I) in testCopy()
/third_party/mesa3d/src/gallium/frontends/glx/xlib/
Dglx_api.c2146 int renderType, GLXContext shareCtx, Bool direct ) in glXCreateNewContext() argument
2151 (renderType != GLX_RGBA_TYPE && renderType != GLX_COLOR_INDEX_TYPE)) in glXCreateNewContext()
2357 int renderType, GLXContext shareCtx, in glXCreateContextWithConfigSGIX() argument
2363 (renderType != GLX_RGBA_TYPE && renderType != GLX_COLOR_INDEX_TYPE)) in glXCreateContextWithConfigSGIX()
2664 int renderType = GLX_RGBA_TYPE; in glXCreateContextAttribsARB() local
2687 renderType = attrib_list[++i]; in glXCreateContextAttribsARB()
2715 if (renderType != GLX_RGBA_TYPE && in glXCreateContextAttribsARB()
2716 renderType != GLX_COLOR_INDEX_TYPE) { in glXCreateContextAttribsARB()
2752 if (renderType == GLX_COLOR_INDEX_TYPE && majorVersion >= 3) { in glXCreateContextAttribsARB()
/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/
DCopyTexture3DTest.cpp98 GLenum renderType = 0; in testCopy() local
122 renderType = GL_RGBA8; in testCopy()
136 renderType = GL_RGBA8I; in testCopy()
151 renderType = GL_RGBA8UI; in testCopy()
163 renderType = GL_RGBA32F; in testCopy()
169 glRenderbufferStorage(GL_RENDERBUFFER, renderType, 1, 1); in testCopy()
183 if (renderType == GL_RGBA8) in testCopy()
191 else if (renderType == GL_RGBA32F) in testCopy()
203 else if (renderType == GL_RGBA8UI) in testCopy()
213 else if (renderType == GL_RGBA8I) in testCopy()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineMultisampleTests.cpp455 const RenderType renderType,
471 const RenderType renderType,
491 const RenderType renderType,
825 const RenderType renderType,
2509 …RenderType renderType = m_multisampleStateParams.rasterizationSamples == vk::VK_SAMPLE_COUNT_1_BIT… in iterate() local
2513 …tiveTopology, m_vertices, m_multisampleStateParams, m_colorBlendState, renderType, m_backingMode, … in iterate()
2522 …m_primitiveTopology, m_vertices, multisampleParams, m_colorBlendState, renderType, m_backingMode, … in iterate()
2761 const RenderType renderType, in SampleMaskWithConservativeInstance() argument
2787 , m_renderType (renderType)
3265 const RenderType renderType, in MultisampleRenderer() argument
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
DvktPipelineMultisampleTests.cpp455 const RenderType renderType,
471 const RenderType renderType,
491 const RenderType renderType,
825 const RenderType renderType,
2509 …RenderType renderType = m_multisampleStateParams.rasterizationSamples == vk::VK_SAMPLE_COUNT_1_BIT… in iterate() local
2513 …tiveTopology, m_vertices, m_multisampleStateParams, m_colorBlendState, renderType, m_backingMode, … in iterate()
2522 …m_primitiveTopology, m_vertices, multisampleParams, m_colorBlendState, renderType, m_backingMode, … in iterate()
2761 const RenderType renderType, in SampleMaskWithConservativeInstance() argument
2787 , m_renderType (renderType)
3265 const RenderType renderType, in MultisampleRenderer() argument
[all …]
/third_party/mesa3d/include/GL/
Dglx.h268 int renderType, GLXContext shareList,
/third_party/mesa3d/docs/relnotes/
D17.2.6.rst56 - glx/dri3: Fix passing renderType into glXCreateContext
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/
DGLX_SGIX_fbconfig.txt573 4 CARD32 renderType
/third_party/openGLES/extensions/SGIX/
DGLX_SGIX_fbconfig.txt573 4 CARD32 renderType

12