Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
1401f913
Commit
1401f913
authored
Feb 10, 2017
by
Henri Verbeet
Committed by
Alexandre Julliard
Feb 10, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Disable sRGB decode in swapchain_blit().
Signed-off-by:
Henri Verbeet
<
hverbeet@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ebcf5196
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
swapchain.c
dlls/wined3d/swapchain.c
+3
-0
No files found.
dlls/wined3d/swapchain.c
View file @
1401f913
...
...
@@ -387,6 +387,9 @@ static void swapchain_blit(const struct wined3d_swapchain *swapchain,
device
->
blitter
->
set_shader
(
device
->
blit_priv
,
context2
,
back_buffer
,
NULL
);
gl_info
->
gl_ops
.
gl
.
p_glTexParameteri
(
back_buffer
->
texture_target
,
GL_TEXTURE_MIN_FILTER
,
gl_filter
);
gl_info
->
gl_ops
.
gl
.
p_glTexParameteri
(
back_buffer
->
texture_target
,
GL_TEXTURE_MAG_FILTER
,
gl_filter
);
if
(
gl_info
->
supported
[
EXT_TEXTURE_SRGB_DECODE
])
gl_info
->
gl_ops
.
gl
.
p_glTexParameteri
(
back_buffer
->
texture_target
,
GL_TEXTURE_SRGB_DECODE_EXT
,
GL_SKIP_DECODE_EXT
);
context_set_draw_buffer
(
context
,
GL_BACK
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment