Home | History | Annotate | Download | only in util

Lines Matching refs:info

43 util_draw_init_info(struct pipe_draw_info *info)
45 memset(info, 0, sizeof(*info));
46 info->instance_count = 1;
47 info->max_index = 0xffffffff;
57 struct pipe_draw_info info;
59 util_draw_init_info(&info);
60 info.mode = mode;
61 info.start = start;
62 info.count = count;
63 info.min_index = start;
64 info.max_index = start + count - 1;
66 pipe->draw_vbo(pipe, &info);
75 struct pipe_draw_info info;
77 util_draw_init_info(&info);
78 info.indexed = TRUE;
79 info.mode = mode;
80 info.start = start;
81 info.count = count;
82 info.index_bias = index_bias;
84 pipe->draw_vbo(pipe, &info);
95 struct pipe_draw_info info;
97 util_draw_init_info(&info);
98 info.mode = mode;
99 info.start = start;
100 info.count = count;
101 info.start_instance = start_instance;
102 info.instance_count = instance_count;
103 info.min_index = start;
104 info.max_index = start + count - 1;
106 pipe->draw_vbo(pipe, &info);
118 struct pipe_draw_info info;
120 util_draw_init_info(&info);
121 info.indexed = TRUE;
122 info.mode = mode;
123 info.start = start;
124 info.count = count;
125 info.index_bias = index_bias;
126 info.start_instance = start_instance;
127 info.instance_count = instance_count;
129 pipe->draw_vbo(pipe, &info);
141 struct pipe_draw_info info;
143 util_draw_init_info(&info);
144 info.indexed = TRUE;
145 info.mode = mode;
146 info.start = start;
147 info.count = count;
148 info.index_bias = index_bias;
149 info.min_index = min_index;
150 info.max_index = max_index;
152 pipe->draw_vbo(pipe, &info);
161 const struct pipe_draw_info *info);
169 const struct pipe_draw_info *info);