diff options
author | Marek Olšák <[email protected]> | 2012-09-13 19:38:25 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-09-30 18:57:57 +0200 |
commit | de80660c2bd43db112b6c82d970660ed9806cd33 (patch) | |
tree | 115c132994d540743e6deed23dec941f8eb619b4 /src/gallium/state_trackers/d3d1x | |
parent | d37e6b15ad545106d48af5c8abb75d0e28895d43 (diff) |
gallium: remove resource_resolve
The functionality is provided by the new blit function.
Tested-by: Michel Dänzer <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/d3d1x')
-rw-r--r-- | src/gallium/state_trackers/d3d1x/gd3d11/d3d11_context.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/d3d1x/gd3d11/d3d11_context.h b/src/gallium/state_trackers/d3d1x/gd3d11/d3d11_context.h index a7b761c707f..07612bd5f9a 100644 --- a/src/gallium/state_trackers/d3d1x/gd3d11/d3d11_context.h +++ b/src/gallium/state_trackers/d3d1x/gd3d11/d3d11_context.h @@ -1755,6 +1755,7 @@ struct GalliumD3D10Device : public GalliumD3D10ScreenImpl<threadsafe> unsigned src_subresource, DXGI_FORMAT format) { +#if 0 SYNCHRONIZED; GalliumD3D11Resource<>* dst = (GalliumD3D11Resource<>*)dst_resource; GalliumD3D11Resource<>* src = (GalliumD3D11Resource<>*)src_resource; @@ -1778,6 +1779,7 @@ struct GalliumD3D10Device : public GalliumD3D10ScreenImpl<threadsafe> info.mask = PIPE_MASK_RGBA | PIPE_MASK_ZS; pipe->resource_resolve(pipe, &info); +#endif } #if API >= 11 |