Lines Matching defs:context
38 struct hgl_context* context;
40 context = (struct hgl_context*)stctxi->st_manager_private;
41 assert(context);
42 return context;
161 struct hgl_context* context;
169 context = hgl_st_context(stctxi);
179 resized = (buffer->width != context->width)
180 || (buffer->height != context->height);
185 buffer->width, buffer->height, context->width, context->height);
188 context->width, context->height, stAttachmentMask);
221 hgl_create_st_framebuffer(struct hgl_context* context, void *winsysContext)
227 assert(context);
228 assert(context->display);
229 assert(context->stVisual);
239 buffer->visual = context->stVisual;
240 buffer->screen = context->display->manager->screen;
251 buffer->stfbi->visual = context->stVisual;
256 buffer->stfbi->state_manager = context->display->manager;