Home | History | Annotate | Download | only in graw

Lines Matching full:ctx

21    struct pipe_context *ctx;
63 info->ctx = info->screen->context_create(info->screen, NULL);
64 if (info->ctx == NULL) {
94 info->color_surf[i] = info->ctx->create_surface(info->ctx,
125 info->zs_surf = info->ctx->create_surface(info->ctx,
142 info->ctx->set_framebuffer_state(info->ctx, &fb);
157 handle = info->ctx->create_blend_state(info->ctx, &blend);
158 info->ctx->bind_blend_state(info->ctx, handle);
168 handle = info->ctx->create_depth_stencil_alpha_state(info->ctx,
170 info->ctx->bind_depth_stencil_alpha_state(info->ctx, handle);
179 handle = info->ctx->create_rasterizer_state(info->ctx, &rasterizer);
180 info->ctx->bind_rasterizer_state(info->ctx, handle);
207 info->ctx->set_viewport_state(info->ctx, &vp);
247 info->ctx->transfer_inline_write(info->ctx,
262 t = pipe_get_transfer(info->ctx, samptex,
267 ptr = info->ctx->transfer_map(info->ctx, t);
274 info->ctx->transfer_unmap(info->ctx, t);
276 info->ctx->transfer_destroy(info->ctx, t);
304 sampler = info->ctx->create_sampler_state(info->ctx, &sampler_desc);
325 sv = info->ctx->create_sampler_view(info->ctx, texture, &sv_temp);