Lines Matching defs:context
38 struct hgl_context* context;
40 context = (struct hgl_context*)stctxi->st_manager_private;
41 assert(context);
42 return context;
64 //struct hgl_context* context = hgl_st_context(stctxi);
154 struct hgl_context* context;
162 context = hgl_st_context(stctxi);
167 //get_bitmap_size(context->bitmap, &width, &height);
176 resized = (buffer->width != context->width)
177 || (buffer->height != context->height);
182 buffer->width, buffer->height, context->width, context->height);
185 context->width, context->height, stAttachmentMask);
223 hgl_create_st_framebuffer(struct hgl_context* context)
229 assert(context);
230 assert(context->screen);
231 assert(context->stVisual);
241 buffer->visual = context->stVisual;
242 buffer->screen = context->screen;
244 if (context->screen->get_param(buffer->screen, PIPE_CAP_NPOT_TEXTURES))
252 buffer->stfbi->visual = context->stVisual;
270 hgl_create_st_manager(struct hgl_context* context)
277 assert(context);
278 assert(context->screen);
284 manager->screen = context->screen;