Home | History | Annotate | Download | only in xorg

Lines Matching defs:templat

219 	struct pipe_resource templat;
222 memset(&templat, 0, sizeof(templat));
223 templat.bind |= PIPE_BIND_RENDER_TARGET;
224 templat.bind |= PIPE_BIND_SCANOUT;
225 templat.bind |= PIPE_BIND_CURSOR;
226 templat.target = PIPE_TEXTURE_2D;
227 templat.last_level = 0;
228 templat.depth0 = 1;
229 templat.array_size = 1;
230 templat.format = PIPE_FORMAT_B8G8R8A8_UNORM;
231 templat.width0 = 64;
232 templat.height0 = 64;
237 crtcp->cursor_tex = screen->resource_create(screen, &templat);