Home | History | Annotate | Download | only in graw

Lines Matching full:info

14 static struct graw_info info;
64 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
65 info.ctx->bind_vertex_elements_state(info.ctx, handle);
71 vbuf.buffer = pipe_buffer_create_with_data(info.ctx,
77 info.ctx->set_vertex_buffers(info.ctx, 0, 1, &vbuf);
95 handle = graw_parse_vertex_shader(info.ctx, text);
96 info.ctx->bind_vs_state(info.ctx, handle);
169 handle = graw_parse_fragment_shader(info.ctx, text);
170 info.ctx->bind_fs_state(info.ctx, handle);
184 info.ctx->clear(info.ctx,
187 util_draw_arrays(info.ctx, PIPE_PRIM_QUADS, 0, NUM_VERTS);
188 info.ctx->flush(info.ctx, NULL, 0);
199 debug_dump_surface_bmp(info.ctx, "result.bmp", surf);
202 graw_util_flush_front(&info);
221 if (!graw_util_create_window(&info, width, height, 1, TRUE))
224 graw_util_default_state(&info, TRUE);
226 graw_util_viewport(&info, 0, 0, width, height, -1.0, 1.0);