mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 05:51:27 +12:00
Merge pull request #1562 from MyaniPT/patch-1
Set Write/Read Color/Depth Buffers to false by default
This commit is contained in:
commit
7584f29ec7
1 changed files with 4 additions and 4 deletions
|
@ -854,10 +854,10 @@ namespace rpcs3
|
||||||
{
|
{
|
||||||
opengl_group(group *grp) : group{ grp, "opengl" } {}
|
opengl_group(group *grp) : group{ grp, "opengl" } {}
|
||||||
|
|
||||||
entry<bool> write_color_buffers { this, "Write Color Buffers", true };
|
entry<bool> write_color_buffers { this, "Write Color Buffers", false };
|
||||||
entry<bool> write_depth_buffer { this, "Write Depth Buffer", true };
|
entry<bool> write_depth_buffer { this, "Write Depth Buffer", false };
|
||||||
entry<bool> read_color_buffers { this, "Read Color Buffers", true };
|
entry<bool> read_color_buffers { this, "Read Color Buffers", false };
|
||||||
entry<bool> read_depth_buffer { this, "Read Depth Buffer", true };
|
entry<bool> read_depth_buffer { this, "Read Depth Buffer", false };
|
||||||
} opengl{ this };
|
} opengl{ this };
|
||||||
|
|
||||||
struct d3d12_group : protected group
|
struct d3d12_group : protected group
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue