Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/svga/
Dsvga_surface.h43 struct svga_surface struct
74 struct svga_surface *backed; argument
120 static inline struct svga_surface *
121 svga_surface(struct pipe_surface *surface) in svga_surface() function
123 return (struct svga_surface *)surface; in svga_surface()
127 static inline const struct svga_surface *
130 return (const struct svga_surface *)surface; in svga_surface_const()
134 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()
261 struct svga_surface *s; in svga_create_surface_view()
268 s = CALLOC_STRUCT(svga_surface); in svga_create_surface_view()
430 static struct svga_surface *
431 create_backed_surface_view(struct svga_context *svga, struct svga_surface *s) in create_backed_surface_view()
448 s->backed = svga_surface(backed_view); in create_backed_surface_view()
458 struct svga_surface *bs = s->backed; in create_backed_surface_view()
493 svga_validate_surface_view(struct svga_context *svga, struct svga_surface *s) in svga_validate_surface_view()
606 struct svga_surface *s = svga_surface(surf); in svga_surface_destroy()
668 struct svga_surface *s = svga_surface(surf); in svga_mark_surface_dirty()
[all …]
Dsvga_state_framebuffer.c215 rtv[i] = svga_validate_surface_view(svga, svga_surface(s)); in emit_fb_vgpu10()
220 assert(svga_surface(rtv[i])->view_id != SVGA3D_INVALID_ID); in emit_fb_vgpu10()
236 dsv = svga_validate_surface_view(svga, svga_surface(curr->zsbuf)); in emit_fb_vgpu10()
268 if (hw->cbufs[i] && svga_surface(hw->cbufs[i])->backed) { in emit_fb_vgpu10()
270 &svga_surface(hw->cbufs[i])->backed->base, in emit_fb_vgpu10()
280 if (hw->zsbuf && svga_surface(hw->zsbuf)->backed) { in emit_fb_vgpu10()
281 svga_propagate_surface(svga, &svga_surface(hw->zsbuf)->backed->base, in emit_fb_vgpu10()
350 svga_surface(hw->rtv[i])->handle, in svga_rebind_framebuffer_bindings()
360 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.sources68 svga_surface.c \
69 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()
696 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;
Dmeson.build67 'svga_surface.c',
Dsvga_cmd.c67 struct svga_surface *s = svga_surface(surface); in surface_to_surfaceid()
Dsvga_draw.c274 svga_surface(svga->curr.framebuffer.cbufs[0])->handle : NULL, in draw_vgpu9()