Home
last modified time | relevance | path

Searched refs:svga_surface (Results 1 – 10 of 10) sorted by relevance

/external/mesa3d/src/gallium/drivers/svga/
Dsvga_surface.h43 struct svga_surface struct
74 struct svga_surface *backed; argument
115 static inline struct svga_surface *
116 svga_surface(struct pipe_surface *surface) in svga_surface() function
118 return (struct svga_surface *)surface; in svga_surface()
122 static inline const struct svga_surface *
125 return (const struct svga_surface *)surface; in svga_surface_const()
129 svga_validate_surface_view(struct svga_context *svga, struct svga_surface *s);
Dsvga_surface.c57 struct svga_surface dst, src; in svga_texture_copy_handle()
214 struct svga_surface *s; in svga_create_surface_view()
221 s = CALLOC_STRUCT(svga_surface); in svga_create_surface_view()
374 static struct svga_surface *
375 create_backed_surface_view(struct svga_context *svga, struct svga_surface *s) in create_backed_surface_view()
391 s->backed = svga_surface(backed_view); in create_backed_surface_view()
406 svga_validate_surface_view(struct svga_context *svga, struct svga_surface *s) in svga_validate_surface_view()
516 struct svga_surface *s = svga_surface(surf); in svga_surface_destroy()
564 struct svga_surface *s = svga_surface(surf); in svga_mark_surface_dirty()
608 struct svga_surface *s = svga_surface(surf); in svga_propagate_surface()
[all …]
Dsvga_state_framebuffer.c185 svga_surface(curr->cbufs[i])); in emit_fb_vgpu10()
190 assert(svga_surface(rtv[i])->view_id != SVGA3D_INVALID_ID); in emit_fb_vgpu10()
200 dsv = svga_validate_surface_view(svga, svga_surface(curr->zsbuf)); in emit_fb_vgpu10()
228 if (hw->cbufs[i] && svga_surface(hw->cbufs[i])->backed) { in emit_fb_vgpu10()
230 &svga_surface(hw->cbufs[i])->backed->base); in emit_fb_vgpu10()
239 if (hw->zsbuf && svga_surface(hw->zsbuf)->backed) { in emit_fb_vgpu10()
240 svga_propagate_surface(svga, &svga_surface(hw->zsbuf)->backed->base); in emit_fb_vgpu10()
308 svga_surface(hw->rtv[i])->handle, in svga_rebind_framebuffer_bindings()
318 svga_surface(hw->dsv)->handle, in svga_rebind_framebuffer_bindings()
Dsvga_pipe_clear.c190 svga_surface(fb->cbufs[i])); in try_clear()
203 svga_validate_surface_view(svga, svga_surface(fb->zsbuf)); in try_clear()
242 h = svga_surface(svga->curr.framebuffer.cbufs[0])->handle; in svga_clear()
278 struct svga_surface *svga_surface_dst; in svga_clear_texture()
294 svga_surface_dst = svga_surface(surface); in svga_clear_texture()
474 svga_validate_surface_view(svga, svga_surface(dst)); in svga_try_clear_render_target()
DMakefile.sources66 svga_surface.c \
67 svga_surface.h \
Dsvga_cmd_vgpu10.c53 struct svga_surface *s = svga_surface(surface); in view_relocation()
314 struct svga_surface *ss = svga_surface(color_surf); in SVGA3D_vgpu10_ClearRenderTargetView()
349 struct svga_surface *ss; in SVGA3D_vgpu10_SetRenderTargets()
367 ss = svga_surface(depth_stencil_surf); in SVGA3D_vgpu10_SetRenderTargets()
383 ss = svga_surface(color_surfs[i]); in SVGA3D_vgpu10_SetRenderTargets()
691 struct svga_surface *ss = svga_surface(ds_surf); in SVGA3D_vgpu10_ClearDepthStencilView()
Dsvga_state_sampler.c99 struct svga_surface *surf; in svga_check_sampler_framebuffer_resource_collision()
103 surf = svga_surface(svga->curr.framebuffer.cbufs[i]); in svga_check_sampler_framebuffer_resource_collision()
111 surf = svga_surface(svga->curr.framebuffer.zsbuf); in svga_check_sampler_framebuffer_resource_collision()
Dsvga_sampler_view.h40 struct svga_surface;
Dsvga_cmd.c67 struct svga_surface *s = svga_surface(surface); in surface_to_surfaceid()
Dsvga_draw.c240 svga_surface(svga->curr.framebuffer.cbufs[0])->handle : NULL, in draw_vgpu9()