Searched refs:rtv (Results 1 - 10 of 10) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
H A Dsvga_pipe_clear.c181 struct pipe_surface *rtv; local in function:try_clear
189 rtv = svga_validate_surface_view(svga,
191 if (!rtv)
195 rtv, color->f);
384 struct pipe_surface *rtv = local in function:svga_clear_texture
387 if (!rtv) {
403 ret = SVGA3D_vgpu10_ClearRenderTargetView(svga->swc, rtv,
407 ret = SVGA3D_vgpu10_ClearRenderTargetView(svga->swc, rtv,
421 if (rtv->texture->target != PIPE_TEXTURE_3D &&
422 pipe->screen->is_format_supported(pipe->screen, rtv
474 struct pipe_surface *rtv = local in function:svga_try_clear_render_target
[all...]
H A Dsvga_state_framebuffer.c189 struct pipe_surface *rtv[SVGA3D_MAX_RENDER_TARGETS]; local in function:emit_fb_vgpu10
215 rtv[i] = svga_validate_surface_view(svga, svga_surface(s));
216 if (rtv[i] == NULL) {
220 assert(svga_surface(rtv[i])->view_id != SVGA3D_INVALID_ID);
228 rtv[i] = NULL;
252 memcmp(rtv, svga->state.hw_clear.rtv, num_color * sizeof(rtv[0]))) {
254 ret = SVGA3D_vgpu10_SetRenderTargets(svga->swc, num_color, rtv, dsv);
263 memcpy(svga->state.hw_clear.rtv, rt
[all...]
H A Dsvga_surface.c760 if (hw->rtv[i])
761 svga_mark_surface_dirty(hw->rtv[i]);
894 struct pipe_surface *s = svga->state.hw_clear.rtv[i];
H A Dsvga_context.h330 struct pipe_surface *rtv[SVGA3D_MAX_RENDER_TARGETS]; member in struct:svga_hw_clear_state
408 boolean has_backed_views; /* set if any of the rtv/dsv is a backed surface view */
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
H A Dsvga_pipe_clear.c184 struct pipe_surface *rtv; local in function:try_clear
192 rtv = svga_validate_surface_view(svga,
194 if (!rtv)
198 rtv, color->f);
359 struct pipe_surface *rtv = local in function:svga_clear_texture
362 if (!rtv) {
378 SVGA_RETRY(svga, SVGA3D_vgpu10_ClearRenderTargetView(svga->swc, rtv,
390 if (rtv->texture->target != PIPE_TEXTURE_3D &&
391 pipe->screen->is_format_supported(pipe->screen, rtv->format,
392 rtv
443 struct pipe_surface *rtv = local in function:svga_try_clear_render_target
[all...]
H A Dsvga_state_framebuffer.c189 struct pipe_surface *rtv[SVGA3D_MAX_RENDER_TARGETS]; local in function:emit_fb_vgpu10
216 rtv[i] = svga_validate_surface_view(svga, svga_surface(s));
217 if (rtv[i] == NULL) {
221 rtv[i] = svga->state.hw_clear.rtv[i];
224 assert(svga_surface(rtv[i])->view_id != SVGA3D_INVALID_ID);
232 rtv[i] = NULL;
260 memcmp(rtv, svga->state.hw_clear.rtv, num_color * sizeof(rtv[
[all...]
H A Dsvga_context.c262 memset(&svga->state.hw_clear.rtv, 0, sizeof(svga->state.hw_clear.rtv));
H A Dsvga_surface.c748 if (hw->rtv[i])
749 svga_mark_surface_dirty(hw->rtv[i]);
882 struct pipe_surface *s = svga->state.hw_clear.rtv[i];
H A Dsvga_context.h361 struct pipe_surface *rtv[SVGA3D_MAX_RENDER_TARGETS]; member in struct:svga_hw_clear_state
443 boolean has_backed_views; /* set if any of the rtv/dsv is a backed surface view */
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/d3d12/
H A Dd3d12_screen.cpp857 D3D12_RENDER_TARGET_VIEW_DESC rtv = {}; local in function:d3d12_init_null_rtv
858 rtv.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
859 rtv.ViewDimension = D3D12_RTV_DIMENSION_TEXTURE2D;
860 rtv.Texture2D.MipSlice = 0;
861 rtv.Texture2D.PlaneSlice = 0;
863 screen->dev->CreateRenderTargetView(NULL, &rtv, screen->null_rtv.cpu_handle);

Completed in 12 milliseconds