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
b4bee025
Commit
b4bee025
authored
Jul 02, 2008
by
Stefan Dösinger
Committed by
Alexandre Julliard
Jul 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Move the viewport to the vertex and misc pipeline states.
parent
4b831a5d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
state.c
dlls/wined3d/state.c
+8
-2
No files found.
dlls/wined3d/state.c
View file @
b4bee025
...
...
@@ -3627,7 +3627,7 @@ static void vertexdeclaration(DWORD state, IWineD3DStateBlockImpl *stateblock, W
}
}
static
void
viewport
(
DWORD
state
,
IWineD3DStateBlockImpl
*
stateblock
,
WineD3DContext
*
context
)
{
static
void
viewport
_miscpart
(
DWORD
state
,
IWineD3DStateBlockImpl
*
stateblock
,
WineD3DContext
*
context
)
{
UINT
width
,
height
;
IWineD3DSurfaceImpl
*
target
;
...
...
@@ -3649,7 +3649,9 @@ static void viewport(DWORD state, IWineD3DStateBlockImpl *stateblock, WineD3DCon
}
checkGLcall
(
"glViewport"
);
}
static
void
viewport_vertexpart
(
DWORD
state
,
IWineD3DStateBlockImpl
*
stateblock
,
WineD3DContext
*
context
)
{
stateblock
->
wineD3DDevice
->
posFixup
[
2
]
=
1
.
0
/
stateblock
->
viewport
.
Width
;
stateblock
->
wineD3DDevice
->
posFixup
[
3
]
=
-
stateblock
->
wineD3DDevice
->
posFixup
[
1
]
/
stateblock
->
viewport
.
Height
;
if
(
!
isStateDirty
(
context
,
STATE_TRANSFORM
(
WINED3DTS_PROJECTION
)))
{
...
...
@@ -4839,7 +4841,7 @@ const struct StateEntry FFPStateTable[] =
{
/* , STATE_INDEXBUFFER */
STATE_INDEXBUFFER
,
indexbuffer
},
{
/* , STATE_VDECL */
STATE_VDECL
,
NULL
},
{
/* , STATE_VSHADER */
STATE_VDECL
,
NULL
},
{
/* , STATE_VIEWPORT */
STATE_VIEWPORT
,
viewport
},
{
/* , STATE_VIEWPORT */
STATE_VIEWPORT
,
NULL
},
{
/* , STATE_VERTEXSHADERCONSTANT */
STATE_VERTEXSHADERCONSTANT
,
NULL
},
{
/* , STATE_PIXELSHADERCONSTANT */
STATE_VERTEXSHADERCONSTANT
,
NULL
},
/* Lights */
...
...
@@ -4911,6 +4913,8 @@ const struct StateEntryTemplate misc_state_template[] = {
*/
{
STATE_VERTEXSHADERCONSTANT
,
{
STATE_VERTEXSHADERCONSTANT
,
shaderconstant
}},
{
STATE_PIXELSHADERCONSTANT
,
{
STATE_VERTEXSHADERCONSTANT
,
shaderconstant
}},
/* Viewport */
{
STATE_VIEWPORT
,
{
STATE_VIEWPORT
,
viewport_miscpart
}},
{
0
/* Terminate */
,
{
0
,
0
}},
};
...
...
@@ -4961,6 +4965,8 @@ const struct StateEntryTemplate ffp_vertexstate_template[] = {
{
STATE_ACTIVELIGHT
(
5
),
{
STATE_ACTIVELIGHT
(
5
),
light
}},
{
STATE_ACTIVELIGHT
(
6
),
{
STATE_ACTIVELIGHT
(
6
),
light
}},
{
STATE_ACTIVELIGHT
(
7
),
{
STATE_ACTIVELIGHT
(
7
),
light
}},
/* Viewport */
{
STATE_VIEWPORT
,
{
STATE_VIEWPORT
,
viewport_vertexpart
}},
{
0
/* Terminate */
,
{
0
,
0
}},
};
...
...
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