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
8de7d2ed
Commit
8de7d2ed
authored
May 04, 2010
by
Henri Verbeet
Committed by
Alexandre Julliard
May 05, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Use context_apply_clear_state() in color_fill_fbo().
parent
ed75f5ca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
26 deletions
+8
-26
device.c
dlls/wined3d/device.c
+8
-26
No files found.
dlls/wined3d/device.c
View file @
8de7d2ed
...
@@ -5487,42 +5487,24 @@ static void color_fill_fbo(IWineD3DDevice *iface, IWineD3DSurfaceImpl *surface,
...
@@ -5487,42 +5487,24 @@ static void color_fill_fbo(IWineD3DDevice *iface, IWineD3DSurfaceImpl *surface,
if
(
rect
)
IWineD3DSurface_LoadLocation
((
IWineD3DSurface
*
)
surface
,
SFLAG_INDRAWABLE
,
NULL
);
if
(
rect
)
IWineD3DSurface_LoadLocation
((
IWineD3DSurface
*
)
surface
,
SFLAG_INDRAWABLE
,
NULL
);
IWineD3DSurface_ModifyLocation
((
IWineD3DSurface
*
)
surface
,
SFLAG_INDRAWABLE
,
TRUE
);
IWineD3DSurface_ModifyLocation
((
IWineD3DSurface
*
)
surface
,
SFLAG_INDRAWABLE
,
TRUE
);
if
(
!
surface_is_offscreen
(
surface
))
context
=
context_acquire
(
This
,
surface
);
{
context_apply_clear_state
(
context
,
This
,
surface
,
NULL
);
TRACE
(
"Surface %p is onscreen
\n
"
,
surface
);
context
=
context_acquire
(
This
,
surface
);
ENTER_GL
();
context_bind_fbo
(
context
,
GL_FRAMEBUFFER
,
NULL
);
context_set_draw_buffer
(
context
,
surface_get_gl_buffer
(
surface
));
}
else
{
TRACE
(
"Surface %p is offscreen
\n
"
,
surface
);
context
=
context_acquire
(
This
,
NULL
);
ENTER_GL
();
ENTER_GL
();
context_bind_fbo
(
context
,
GL_FRAMEBUFFER
,
&
context
->
dst_fbo
);
context_attach_surface_fbo
(
context
,
GL_FRAMEBUFFER
,
0
,
surface
);
context_attach_depth_stencil_fbo
(
context
,
GL_FRAMEBUFFER
,
NULL
,
FALSE
);
}
if
(
rect
)
{
if
(
rect
)
glEnable
(
GL_SCISSOR_TEST
);
{
if
(
surface_is_offscreen
(
surface
))
if
(
surface_is_offscreen
(
surface
))
glScissor
(
rect
->
x1
,
rect
->
y1
,
rect
->
x2
-
rect
->
x1
,
rect
->
y2
-
rect
->
y1
);
glScissor
(
rect
->
x1
,
rect
->
y1
,
rect
->
x2
-
rect
->
x1
,
rect
->
y2
-
rect
->
y1
);
else
else
glScissor
(
rect
->
x1
,
surface
->
currentDesc
.
Height
-
rect
->
y2
,
glScissor
(
rect
->
x1
,
surface
->
currentDesc
.
Height
-
rect
->
y2
,
rect
->
x2
-
rect
->
x1
,
rect
->
y2
-
rect
->
y1
);
rect
->
x2
-
rect
->
x1
,
rect
->
y2
-
rect
->
y1
);
checkGLcall
(
"glScissor"
);
checkGLcall
(
"glScissor"
);
IWineD3DDeviceImpl_MarkStateDirty
(
This
,
STATE_SCISSORRECT
);
}
}
else
{
else
{
glDisable
(
GL_SCISSOR_TEST
);
glDisable
(
GL_SCISSOR_TEST
);
}
}
IWineD3DDeviceImpl_MarkStateDirty
(
This
,
STATE_RENDER
(
WINED3DRS_SCISSORTESTENABLE
));
glDisable
(
GL_BLEND
);
IWineD3DDeviceImpl_MarkStateDirty
(
This
,
STATE_RENDER
(
WINED3DRS_ALPHABLENDENABLE
));
glColorMask
(
GL_TRUE
,
GL_TRUE
,
GL_TRUE
,
GL_TRUE
);
glColorMask
(
GL_TRUE
,
GL_TRUE
,
GL_TRUE
,
GL_TRUE
);
IWineD3DDeviceImpl_MarkStateDirty
(
This
,
STATE_RENDER
(
WINED3DRS_COLORWRITEENABLE
));
IWineD3DDeviceImpl_MarkStateDirty
(
This
,
STATE_RENDER
(
WINED3DRS_COLORWRITEENABLE
));
...
...
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