Lines Matching refs:attribs
56 struct st_context_attribs attribs;
83 memset(&attribs, 0, sizeof(attribs));
86 attribs.profile = ST_PROFILE_OPENGL_ES1;
89 attribs.profile = ST_PROFILE_OPENGL_ES2;
94 attribs.profile = ST_PROFILE_DEFAULT;
96 attribs.profile = api == API_OPENGL_COMPAT ? ST_PROFILE_DEFAULT
100 attribs.major = ctx_config->major_version;
101 attribs.minor = ctx_config->minor_version;
104 attribs.flags |= ST_CONTEXT_FLAG_FORWARD_COMPATIBLE;
112 attribs.flags |= ST_CONTEXT_FLAG_DEBUG;
115 attribs.flags |= ST_CONTEXT_FLAG_ROBUST_ACCESS;
119 attribs.flags |= ST_CONTEXT_FLAG_RESET_NOTIFICATION_ENABLED;
122 attribs.flags |= ctx_config->no_error ? ST_CONTEXT_FLAG_NO_ERROR : 0;
127 attribs.flags |= ST_CONTEXT_FLAG_LOW_PRIORITY;
130 attribs.flags |= ST_CONTEXT_FLAG_HIGH_PRIORITY;
139 attribs.flags |= ST_CONTEXT_FLAG_RELEASE_NONE;
165 attribs.flags |= ST_CONTEXT_FLAG_NO_ERROR;
167 attribs.options = screen->options;
168 dri_fill_st_visual(&attribs.visual, screen, visual);
169 ctx->st = stapi->create_context(stapi, &screen->base, &attribs, &ctx_err,