Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
27a0b8a5
Commit
27a0b8a5
authored
Apr 29, 2014
by
Henri Verbeet
Committed by
Alexandre Julliard
Apr 30, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Only output a warning when clearing a viewport without background material.
parent
4ff220f9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
9 deletions
+6
-9
viewport.c
dlls/ddraw/viewport.c
+6
-9
No files found.
dlls/ddraw/viewport.c
View file @
27a0b8a5
...
...
@@ -665,16 +665,13 @@ static HRESULT WINAPI d3d_viewport_Clear(IDirect3DViewport3 *iface,
if
(
flags
&
D3DCLEAR_TARGET
)
{
if
(
This
->
background
==
NULL
)
{
ERR
(
" Trying to clear the color buffer without background material!
\n
"
);
}
if
(
!
This
->
background
)
WARN
(
"No background material set.
\n
"
);
else
{
color
=
((
int
)((
This
->
background
->
mat
.
u
.
diffuse
.
u1
.
r
)
*
255
)
<<
16
)
|
((
int
)
((
This
->
background
->
mat
.
u
.
diffuse
.
u2
.
g
)
*
255
)
<<
8
)
|
((
int
)
((
This
->
background
->
mat
.
u
.
diffuse
.
u3
.
b
)
*
255
)
<<
0
)
|
((
int
)
((
This
->
background
->
mat
.
u
.
diffuse
.
u4
.
a
)
*
255
)
<<
24
);
}
color
=
D3DRGBA
(
This
->
background
->
mat
.
u
.
diffuse
.
u1
.
r
,
This
->
background
->
mat
.
u
.
diffuse
.
u2
.
g
,
This
->
background
->
mat
.
u
.
diffuse
.
u3
.
b
,
This
->
background
->
mat
.
u
.
diffuse
.
u4
.
a
);
}
/* Need to temporarily activate viewport to clear it. Previously active one will be restored
...
...
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