Home | History | Annotate | Download | only in graw

Lines Matching defs:templat

151    struct pipe_resource templat;
154 templat.target = PIPE_BUFFER;
155 templat.format = PIPE_FORMAT_R8_UNORM;
156 templat.width0 = sizeof(constants1);
157 templat.height0 = 1;
158 templat.depth0 = 1;
159 templat.array_size = 1;
160 templat.last_level = 0;
161 templat.nr_samples = 1;
162 templat.bind = PIPE_BIND_CONSTANT_BUFFER;
164 constbuf1 = screen->resource_create(screen, &templat);
167 constbuf2 = screen->resource_create(screen, &templat);
357 struct pipe_resource templat;
403 templat.target = PIPE_TEXTURE_2D;
404 templat.format = PIPE_FORMAT_B8G8R8A8_UNORM;
405 templat.width0 = SIZE;
406 templat.height0 = SIZE;
407 templat.depth0 = 1;
408 templat.array_size = 1;
409 templat.last_level = 0;
410 templat.nr_samples = 1;
411 templat.bind = PIPE_BIND_SAMPLER_VIEW;
415 &templat);
490 struct pipe_resource templat;
516 templat.target = PIPE_TEXTURE_2D;
517 templat.format = formats[i];
518 templat.width0 = WIDTH;
519 templat.height0 = HEIGHT;
520 templat.depth0 = 1;
521 templat.array_size = 1;
522 templat.last_level = 0;
523 templat.nr_samples = 1;
524 templat.bind = (PIPE_BIND_RENDER_TARGET |
528 &templat);
532 surf_tmpl.format = templat.format;