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
4194d804
Commit
4194d804
authored
Apr 01, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Apr 01, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Filter invalid texture stage states passed by the application.
parent
19067f12
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
device.c
dlls/ddraw/device.c
+13
-0
No files found.
dlls/ddraw/device.c
View file @
4194d804
...
...
@@ -4776,6 +4776,13 @@ IDirect3DDeviceImpl_7_GetTextureStageState(IDirect3DDevice7 *iface,
if
(
!
State
)
return
DDERR_INVALIDPARAMS
;
if
(
TexStageStateType
>
D3DTSS_TEXTURETRANSFORMFLAGS
)
{
WARN
(
"Invalid TexStageStateType %#x passed.
\n
"
,
TexStageStateType
);
*
State
=
0
;
return
DD_OK
;
}
EnterCriticalSection
(
&
ddraw_cs
);
if
(
l
->
sampler_state
)
...
...
@@ -4896,6 +4903,12 @@ IDirect3DDeviceImpl_7_SetTextureStageState(IDirect3DDevice7 *iface,
HRESULT
hr
;
TRACE
(
"(%p)->(%08x,%08x,%08x): Relay!
\n
"
,
This
,
Stage
,
TexStageStateType
,
State
);
if
(
TexStageStateType
>
D3DTSS_TEXTURETRANSFORMFLAGS
)
{
WARN
(
"Invalid TexStageStateType %#x passed.
\n
"
,
TexStageStateType
);
return
DD_OK
;
}
EnterCriticalSection
(
&
ddraw_cs
);
if
(
l
->
sampler_state
)
...
...
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