Searched refs:renderType (Results 1 - 25 of 65) sorted by relevance

123

/xsrc/external/mit/MesaLib.old/dist/src/glx/tests/
H A Dfake_glx_screen.cpp55 struct glx_context *shareList, int renderType)
58 (void) renderType;
84 int renderType)
86 return indirect_create_context(base, config_base, shareList, renderType);
54 indirect_create_context(struct glx_screen * psc,struct glx_config * mode,struct glx_context * shareList,int renderType) argument
81 applegl_create_context(struct glx_screen * base,struct glx_config * config_base,struct glx_context * shareList,int renderType) argument
H A Dfake_glx_screen.h110 struct glx_context *shareList, int renderType)
113 (void) renderType;
109 create(struct glx_screen * psc,struct glx_config * mode,struct glx_context * shareList,int renderType) argument
/xsrc/external/mit/MesaLib/dist/src/glx/tests/
H A Dfake_glx_screen.cpp53 struct glx_context *shareList, int renderType)
56 (void) renderType;
82 int renderType)
84 return indirect_create_context(base, config_base, shareList, renderType);
52 indirect_create_context(struct glx_screen * psc,struct glx_config * mode,struct glx_context * shareList,int renderType) argument
79 applegl_create_context(struct glx_screen * base,struct glx_config * config_base,struct glx_context * shareList,int renderType) argument
H A Dfake_glx_screen.h110 struct glx_context *shareList, int renderType)
113 (void) renderType;
109 create(struct glx_screen * psc,struct glx_config * mode,struct glx_context * shareList,int renderType) argument
/xsrc/external/mit/xorg-server/dist/glx/
H A Dglxdricommon.c105 render_type_is_pbuffer_only(unsigned renderType) argument
114 return !!(renderType & (__DRI_ATTRIB_UNSIGNED_FLOAT_BIT
135 GLint renderType = 0; local in function:createModeFromConfig
149 renderType |= GLX_RGBA_BIT;
151 renderType |= GLX_COLOR_INDEX_BIT;
153 renderType |= GLX_RGBA_FLOAT_BIT_ARB;
155 renderType |= GLX_RGBA_UNSIGNED_FLOAT_BIT_EXT;
188 if (!render_type_is_pbuffer_only(renderType))
203 config->config.renderType = renderType;
[all...]
H A Dglxcontext.h110 int renderType; member in struct:__GLXcontext
H A Dglxscreens.h85 GLint renderType; member in struct:__GLXconfig
/xsrc/external/mit/MesaLib/dist/src/glx/
H A Ddri_common.h92 int renderType);
H A Ddriwindows_glx.c122 struct glx_context *shareList, int renderType)
132 /* Check the renderType value */
133 if (!validate_renderType_against_config(config_base, renderType))
157 pcp->base.renderType = renderType;
187 uint32_t renderType = GLX_RGBA_TYPE; local in function:driwindows_create_context_attribs
189 /* Extract renderType from attribs */
193 renderType = attribs[i * 2 + 1];
206 /* Check the renderType value */
207 if (!validate_renderType_against_config(config_base, renderType)) {
120 driwindows_create_context(struct glx_screen * base,struct glx_config * config_base,struct glx_context * shareList,int renderType) argument
[all...]
H A Dindirect_glx.c260 struct glx_context *shareList, int renderType)
263 const uint32_t attribs[] = { GLX_RENDER_TYPE, renderType };
286 int i, renderType = GLX_RGBA_TYPE; local in function:indirect_create_context_attribs
300 renderType = val;
333 gc->renderType = renderType;
258 indirect_create_context(struct glx_screen * psc,struct glx_config * mode,struct glx_context * shareList,int renderType) argument
H A Dglxconfig.h74 GLint renderType; member in struct:glx_config
H A Dglxcmds.c229 * \param config GLX FBConfig which will support the returned renderType.
230 * \param renderType The context render type to be verified.
231 * \return True if the value of context renderType was approved, or 0 if no
236 int renderType)
240 return renderType == GLX_DONT_CARE;
242 switch (renderType) {
244 return (config->renderType & GLX_RGBA_BIT) != 0;
246 return (config->renderType & GLX_COLOR_INDEX_BIT) != 0;
248 return (config->renderType & GLX_RGBA_FLOAT_BIT_ARB) != 0;
250 return (config->renderType
235 validate_renderType_against_config(const struct glx_config * config,int renderType) argument
325 CreateContext(Display * dpy,int generic_id,struct glx_config * config,GLXContext shareList_user,Bool allowDirect,unsigned code,int renderType,int screen) argument
444 int renderType = GLX_RGBA_TYPE; local in function:glXCreateContext
1414 int i, renderType = GLX_RGBA_TYPE; /* By default, assume RGBA context */ variable in typeref:typename:int
1616 glXCreateNewContext(Display * dpy,GLXFBConfig fbconfig,int renderType,GLXContext shareList,Bool allowDirect) argument
2026 glXCreateContextWithConfigSGIX(Display * dpy,GLXFBConfigSGIX fbconfig,int renderType,GLXContext shareList,Bool allowDirect) argument
[all...]
H A Dglxclient.h409 int renderType; member in struct:glx_context
482 int renderType);
775 struct glx_context *shareList, int renderType);
785 int renderType);
800 struct glx_context *shareList, int renderType);
H A Dapplegl_glx.c122 struct glx_context *shareList, int renderType)
120 applegl_create_context(struct glx_screen * psc,struct glx_config * config,struct glx_context * shareList,int renderType) argument
/xsrc/external/mit/MesaLib.old/dist/src/glx/
H A Ddriwindows_glx.c162 struct glx_context *shareList, int renderType)
172 /* Check the renderType value */
173 if (!validate_renderType_against_config(config_base, renderType))
197 pcp->base.renderType = renderType;
227 uint32_t renderType = GLX_RGBA_TYPE; local in function:driwindows_create_context_attribs
229 /* Extract renderType from attribs */
233 renderType = attribs[i * 2 + 1];
246 /* Check the renderType value */
247 if (!validate_renderType_against_config(config_base, renderType)) {
160 driwindows_create_context(struct glx_screen * base,struct glx_config * config_base,struct glx_context * shareList,int renderType) argument
[all...]
H A Dglxcmds.c230 * \param config GLX FBConfig which will support the returned renderType.
231 * \param renderType The context render type to be verified.
232 * \return True if the value of context renderType was approved, or 0 if no
237 int renderType)
243 switch (renderType) {
245 return (config->renderType & GLX_RGBA_BIT) != 0;
247 return (config->renderType & GLX_COLOR_INDEX_BIT) != 0;
249 return (config->renderType & GLX_RGBA_FLOAT_BIT_ARB) != 0;
251 return (config->renderType & GLX_RGBA_UNSIGNED_FLOAT_BIT_EXT) != 0;
317 * \param renderType Fo
236 validate_renderType_against_config(const struct glx_config * config,int renderType) argument
321 CreateContext(Display * dpy,int generic_id,struct glx_config * config,GLXContext shareList_user,Bool allowDirect,unsigned code,int renderType,int screen) argument
440 int renderType = GLX_RGBA_TYPE; local in function:glXCreateContext
1421 int i, renderType = GLX_RGBA_TYPE; /* By default, assume RGBA context */ variable in typeref:typename:int
1629 glXCreateNewContext(Display * dpy,GLXFBConfig fbconfig,int renderType,GLXContext shareList,Bool allowDirect) argument
2014 glXCreateContextWithConfigSGIX(Display * dpy,GLXFBConfigSGIX fbconfig,int renderType,GLXContext shareList,Bool allowDirect) argument
[all...]
H A Dglxclient.h114 int renderType);
421 int renderType; member in struct:glx_context
496 int renderType);
821 struct glx_context *shareList, int renderType);
828 int renderType);
843 struct glx_context *shareList, int renderType);
H A Dindirect_glx.c345 struct glx_context *shareList, int renderType)
368 gc->renderType = renderType;
446 int renderType = GLX_RGBA_TYPE; local in function:indirect_create_context_attribs
456 * attributes to correctly set renderType.
460 renderType = attribs[i * 2 + 1];
463 return indirect_create_context(base, config_base, shareList, renderType);
343 indirect_create_context(struct glx_screen * psc,struct glx_config * mode,struct glx_context * shareList,int renderType) argument
H A Dglxconfig.h78 GLint renderType; member in struct:glx_config
H A Ddrisw_glx.c515 struct glx_context *shareList, int renderType)
525 /* Check the renderType value */
526 if (!validate_renderType_against_config(config_base, renderType))
550 pcp->base.renderType = renderType;
580 uint32_t renderType; local in function:drisw_create_context_attribs
597 &major_ver, &minor_ver, &renderType, &flags,
604 /* Check the renderType value */
605 if (!validate_renderType_against_config(config_base, renderType)) {
651 pcp->base.renderType
513 drisw_create_context(struct glx_screen * base,struct glx_config * config_base,struct glx_context * shareList,int renderType) argument
[all...]
/xsrc/external/mit/mesa-demos/dist/src/xdemos/
H A Dpbutil.c197 int drawableType, renderType, xRenderable, xVisual, id; local in function:PrintFBConfigInfo
221 renderType = GetFBConfigAttrib(dpy, screen, config, GLX_RENDER_TYPE);
254 (renderType & GLX_RGBA_BIT_SGIX) ? "y" : ".",
255 (renderType & GLX_COLOR_INDEX_BIT_SGIX) ? "y" : ".",
292 if (renderType & GLX_RGBA_BIT_SGIX) printf("RGBA ");
293 if (renderType & GLX_COLOR_INDEX_BIT_SGIX) printf("CI ");
/xsrc/external/mit/xorg-server.old/dist/hw/dmx/glxProxy/
H A Dglxfbconfig.c47 (c1->renderType == c2->renderType) &&
/xsrc/external/mit/xorgproto/dist/include/GL/
H A Dglxint.h94 int renderType; member in struct:__GLXFBConfigRec
/xsrc/external/mit/xorg-server.old/dist/glx/
H A Dglxscreens.h80 GLint renderType; member in struct:__GLXconfig
H A Dglxdricommon.c138 config->config.renderType = 0;
140 config->config.renderType |= GLX_RGBA_BIT;
142 config->config.renderType |= GLX_COLOR_INDEX_BIT;

Completed in 27 milliseconds

123