Home
last modified time | relevance | path

Searched refs:tmplt (Results 1 – 4 of 4) sorted by relevance

/third_party/mesa3d/src/gallium/frontends/nine/
Dswapchain9.c187 struct pipe_resource *resource, tmplt; in NineSwapChain9_Resize() local
304 memset(&tmplt, 0, sizeof(tmplt)); in NineSwapChain9_Resize()
305 tmplt.target = PIPE_TEXTURE_2D; in NineSwapChain9_Resize()
306 tmplt.width0 = pParams->BackBufferWidth; in NineSwapChain9_Resize()
307 tmplt.height0 = pParams->BackBufferHeight; in NineSwapChain9_Resize()
308 tmplt.depth0 = 1; in NineSwapChain9_Resize()
309 tmplt.last_level = 0; in NineSwapChain9_Resize()
310 tmplt.array_size = 1; in NineSwapChain9_Resize()
311 tmplt.usage = PIPE_USAGE_DEFAULT; in NineSwapChain9_Resize()
312 tmplt.flags = 0; in NineSwapChain9_Resize()
[all …]
Ddevice9.c504 struct pipe_resource tmplt; in NineDevice9_ctor() local
507 memset(&tmplt, 0, sizeof(tmplt)); in NineDevice9_ctor()
510 tmplt.target = PIPE_TEXTURE_2D; in NineDevice9_ctor()
511 tmplt.width0 = 1; in NineDevice9_ctor()
512 tmplt.height0 = 1; in NineDevice9_ctor()
513 tmplt.depth0 = 1; in NineDevice9_ctor()
514 tmplt.last_level = 0; in NineDevice9_ctor()
515 tmplt.array_size = 1; in NineDevice9_ctor()
516 tmplt.usage = PIPE_USAGE_DEFAULT; in NineDevice9_ctor()
517 tmplt.flags = 0; in NineDevice9_ctor()
[all …]
/third_party/mesa3d/src/gallium/tests/trivial/
Dtri.c131 struct pipe_resource tmplt; in init_prog() local
132 memset(&tmplt, 0, sizeof(tmplt)); in init_prog()
133 tmplt.target = PIPE_TEXTURE_2D; in init_prog()
134 tmplt.format = PIPE_FORMAT_B8G8R8A8_UNORM; /* All drivers support this */ in init_prog()
135 tmplt.width0 = WIDTH; in init_prog()
136 tmplt.height0 = HEIGHT; in init_prog()
137 tmplt.depth0 = 1; in init_prog()
138 tmplt.array_size = 1; in init_prog()
139 tmplt.last_level = 0; in init_prog()
140 tmplt.bind = PIPE_BIND_RENDER_TARGET; in init_prog()
[all …]
Dquad-tex.c141 struct pipe_resource tmplt; in init_prog() local
142 memset(&tmplt, 0, sizeof(tmplt)); in init_prog()
143 tmplt.target = PIPE_TEXTURE_2D; in init_prog()
144 tmplt.format = PIPE_FORMAT_B8G8R8A8_UNORM; /* All drivers support this */ in init_prog()
145 tmplt.width0 = WIDTH; in init_prog()
146 tmplt.height0 = HEIGHT; in init_prog()
147 tmplt.depth0 = 1; in init_prog()
148 tmplt.array_size = 1; in init_prog()
149 tmplt.last_level = 0; in init_prog()
150 tmplt.bind = PIPE_BIND_RENDER_TARGET; in init_prog()
[all …]