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
ea093f4a
Commit
ea093f4a
authored
Dec 27, 2007
by
Stefan Dösinger
Committed by
Alexandre Julliard
Dec 28, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Multiply the half pixel correction with .w.
parent
0b0c75ed
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
+5
-6
vertexshader.c
dlls/wined3d/vertexshader.c
+5
-6
No files found.
dlls/wined3d/vertexshader.c
View file @
ea093f4a
...
@@ -413,7 +413,8 @@ static VOID IWineD3DVertexShaderImpl_GenerateShader(
...
@@ -413,7 +413,8 @@ static VOID IWineD3DVertexShaderImpl_GenerateShader(
* 1.0 or -1.0 to turn the rendering upside down for offscreen rendering. PosFixup.x
* 1.0 or -1.0 to turn the rendering upside down for offscreen rendering. PosFixup.x
* contains 1.0 to allow a mad.
* contains 1.0 to allow a mad.
*/
*/
shader_addline
(
&
buffer
,
"gl_Position.xy = gl_Position.xy * posFixup.xy + posFixup.zw;
\n
"
);
shader_addline
(
&
buffer
,
"gl_Position.y = gl_Position.y * posFixup.y;
\n
"
);
shader_addline
(
&
buffer
,
"gl_Position.xy += posFixup.zw * gl_Position.ww;
\n
"
);
/* Z coord [0;1]->[-1;1] mapping, see comment in transform_projection in state.c
/* Z coord [0;1]->[-1;1] mapping, see comment in transform_projection in state.c
*
*
...
@@ -444,10 +445,7 @@ static VOID IWineD3DVertexShaderImpl_GenerateShader(
...
@@ -444,10 +445,7 @@ static VOID IWineD3DVertexShaderImpl_GenerateShader(
This
->
baseShader
.
limits
.
constant_float
=
This
->
baseShader
.
limits
.
constant_float
=
min
(
95
,
This
->
baseShader
.
limits
.
constant_float
);
min
(
95
,
This
->
baseShader
.
limits
.
constant_float
);
/* Some instructions need a temporary register. Add it if needed, but only if it is really needed */
if
(
reg_maps
->
usesnrm
||
This
->
rel_offset
)
{
shader_addline
(
&
buffer
,
"TEMP TMP;
\n
"
);
shader_addline
(
&
buffer
,
"TEMP TMP;
\n
"
);
}
/* Base Declarations */
/* Base Declarations */
shader_generate_arb_declarations
(
(
IWineD3DBaseShader
*
)
This
,
reg_maps
,
&
buffer
,
&
GLINFO_LOCATION
);
shader_generate_arb_declarations
(
(
IWineD3DBaseShader
*
)
This
,
reg_maps
,
&
buffer
,
&
GLINFO_LOCATION
);
...
@@ -479,8 +477,9 @@ static VOID IWineD3DVertexShaderImpl_GenerateShader(
...
@@ -479,8 +477,9 @@ static VOID IWineD3DVertexShaderImpl_GenerateShader(
* 1.0 or -1.0 to turn the rendering upside down for offscreen rendering. PosFixup.x
* 1.0 or -1.0 to turn the rendering upside down for offscreen rendering. PosFixup.x
* contains 1.0 to allow a mad, but arb vs swizzles are too restricted for that.
* contains 1.0 to allow a mad, but arb vs swizzles are too restricted for that.
*/
*/
shader_addline
(
&
buffer
,
"ADD TMP_OUT.x, TMP_OUT.x, posFixup.z;
\n
"
);
shader_addline
(
&
buffer
,
"MUL TMP, posFixup, TMP_OUT.w;
\n
"
);
shader_addline
(
&
buffer
,
"MAD TMP_OUT.y, TMP_OUT.y, posFixup.y, posFixup.w;
\n
"
);
shader_addline
(
&
buffer
,
"ADD TMP_OUT.x, TMP_OUT.x, TMP.z;
\n
"
);
shader_addline
(
&
buffer
,
"MAD TMP_OUT.y, TMP_OUT.y, posFixup.y, TMP.w;
\n
"
);
/* Z coord [0;1]->[-1;1] mapping, see comment in transform_projection in state.c
/* Z coord [0;1]->[-1;1] mapping, see comment in transform_projection in state.c
* and the glsl equivalent
* and the glsl equivalent
...
...
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