HomeSort by relevance Sort by last modified time
    Searched refs:surf_templ (Results 1 - 8 of 8) sorted by null

  /external/mesa3d/src/gallium/state_trackers/vdpau/
presentation.c 210 struct pipe_surface surf_templ, *surf_draw; local
237 memset(&surf_templ, 0, sizeof(surf_templ));
238 surf_templ.format = tex->format;
239 surf_templ.usage = PIPE_BIND_RENDER_TARGET;
240 surf_draw = pipe->create_surface(pipe, tex, &surf_templ);
output.c 52 struct pipe_surface surf_templ; local
101 memset(&surf_templ, 0, sizeof(surf_templ));
102 surf_templ.format = res->format;
103 surf_templ.usage = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET;
104 vlsurface->surface = pipe->create_surface(pipe, res, &surf_templ);
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_video_buffer.c 350 struct pipe_surface surf_templ; local
369 memset(&surf_templ, 0, sizeof(surf_templ));
370 surf_templ.format = vl_video_buffer_surface_format(buf->resources[j]->format);
371 surf_templ.usage = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET;
372 surf_templ.u.tex.first_layer = surf_templ.u.tex.last_layer = i;
373 buf->surfaces[surf] = pipe->create_surface(pipe, buf->resources[j], &surf_templ);
vl_idct.c 592 struct pipe_surface surf_templ; local
602 memset(&surf_templ, 0, sizeof(surf_templ));
603 surf_templ.format = tex->format;
604 surf_templ.u.tex.first_layer = 0;
605 surf_templ.u.tex.last_layer = 0;
606 surf_templ.usage = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET;
607 buffer->fb_state_mismatch.cbufs[0] = idct->pipe->create_surface(idct->pipe, tex, &surf_templ);
631 struct pipe_surface surf_templ; local
642 memset(&surf_templ, 0, sizeof(surf_templ))
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xvmc/
surface.c 361 struct pipe_surface surf_templ, *surf; local
387 memset(&surf_templ, 0, sizeof(surf_templ));
388 surf_templ.format = tex->format;
389 surf_templ.usage = PIPE_BIND_RENDER_TARGET;
390 surf = pipe->create_surface(pipe, tex, &surf_templ);
  /external/mesa3d/src/gallium/auxiliary/util/
u_surface.c 84 struct pipe_surface surf_templ; local
115 u_surface_default_template(&surf_templ, *textureOut, bind);
119 &surf_templ);
u_gen_mipmap.c 1623 struct pipe_surface *surf, surf_templ; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_video.c 735 struct pipe_surface surf_templ; local
745 memset(&surf_templ, 0, sizeof(surf_templ));
746 surf_templ.format = buf->resources[i]->format;
747 surf_templ.usage = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET;
748 buf->surfaces[i] = pipe->create_surface(pipe, buf->resources[i], &surf_templ);

Completed in 454 milliseconds