mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-16 13:40:29 +01:00
llvmpipe: Actually flush in lp_resource_copy()
The cpu_access is redundant in a software rasterizer.
This commit is contained in:
parent
8be645d53a
commit
a9e0fda070
1 changed files with 2 additions and 2 deletions
|
|
@ -67,14 +67,14 @@ lp_resource_copy(struct pipe_context *pipe,
|
|||
dst, subdst.face, subdst.level,
|
||||
0, /* flush_flags */
|
||||
FALSE, /* read_only */
|
||||
FALSE, /* cpu_access */
|
||||
TRUE, /* cpu_access */
|
||||
FALSE); /* do_not_block */
|
||||
|
||||
llvmpipe_flush_resource(pipe,
|
||||
src, subsrc.face, subsrc.level,
|
||||
0, /* flush_flags */
|
||||
TRUE, /* read_only */
|
||||
FALSE, /* cpu_access */
|
||||
TRUE, /* cpu_access */
|
||||
FALSE); /* do_not_block */
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue