Lines Matching defs:templat
427 struct pipe_resource templat;
429 memset(&templat, 0, sizeof(templat));
430 templat.target = PIPE_TEXTURE_RECT;
431 templat.format = 0; /* setup below */
432 templat.last_level = 0;
433 templat.width0 = osbuffer->width;
434 templat.height0 = osbuffer->height;
435 templat.depth0 = 1;
436 templat.array_size = 1;
437 templat.usage = PIPE_USAGE_DEFAULT;
438 templat.bind = 0; /* setup below */
439 templat.flags = 0;
467 templat.format = format;
468 templat.bind = bind;
471 screen->resource_create(screen, &templat);