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
a628b99d
Commit
a628b99d
authored
Dec 08, 2006
by
Stefan Dösinger
Committed by
Alexandre Julliard
Dec 11, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Remove the unused stateblock vertex blend member.
parent
e53c2a9c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
9 deletions
+1
-9
device.c
dlls/wined3d/device.c
+1
-7
stateblock.c
dlls/wined3d/stateblock.c
+0
-1
wined3d_private.h
dlls/wined3d/wined3d_private.h
+0
-1
No files found.
dlls/wined3d/device.c
View file @
a628b99d
...
...
@@ -3381,14 +3381,8 @@ static HRESULT WINAPI IWineD3DDeviceImpl_SetRenderState(IWineD3DDevice *iface, W
case
WINED3DRS_RANGEFOGENABLE
:
case
WINED3DRS_FOGCOLOR
:
case
WINED3DRS_FOGDENSITY
:
StateTable
[
STATE_RENDER
(
State
)].
apply
(
STATE_RENDER
(
State
),
This
->
stateBlock
);
break
;
case
WINED3DRS_VERTEXBLEND
:
{
This
->
updateStateBlock
->
vertex_blend
=
(
WINED3DVERTEXBLENDFLAGS
)
Value
;
TRACE
(
"Vertex Blending state to %d
\n
"
,
Value
);
}
StateTable
[
STATE_RENDER
(
State
)].
apply
(
STATE_RENDER
(
State
),
This
->
stateBlock
);
break
;
case
WINED3DRS_TWEENFACTOR
:
...
...
dlls/wined3d/stateblock.c
View file @
a628b99d
...
...
@@ -167,7 +167,6 @@ void stateblock_copy(
Dest
->
viewport
=
This
->
viewport
;
Dest
->
material
=
This
->
material
;
Dest
->
pixelShader
=
This
->
pixelShader
;
Dest
->
vertex_blend
=
This
->
vertex_blend
;
Dest
->
tween_factor
=
This
->
tween_factor
;
Dest
->
glsl_program
=
This
->
glsl_program
;
...
...
dlls/wined3d/wined3d_private.h
View file @
a628b99d
...
...
@@ -1172,7 +1172,6 @@ struct IWineD3DStateBlockImpl
float
*
pixelShaderConstantF
;
/* Indexed Vertex Blending */
WINED3DVERTEXBLENDFLAGS
vertex_blend
;
FLOAT
tween_factor
;
/* RenderState */
...
...
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