Home | History | Annotate | Download | only in graw

Lines Matching refs:info

12 static struct graw_info info;
86 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
87 info.ctx->bind_vertex_elements_state(info.ctx, handle);
92 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
98 info.ctx->set_vertex_buffers(info.ctx, 1, &vbuf);
116 handle = graw_parse_vertex_shader(info.ctx, text);
117 info.ctx->bind_vs_state(info.ctx, handle);
142 handle = graw_parse_fragment_shader(info.ctx, text);
143 info.ctx->bind_fs_state(info.ctx, handle);
157 info.ctx->clear(info.ctx,
160 util_draw_arrays(info.ctx, PIPE_PRIM_QUADS, 0, NUM_VERTS);
161 info.ctx->flush(info.ctx, NULL);
163 graw_util_flush_front(&info);
182 if (!graw_util_create_window(&info, width, height, 1, TRUE))
185 graw_util_default_state(&info, TRUE);
187 graw_util_viewport(&info, 0, 0, width, height, -1.0, 1.0);