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
5b846adf
Commit
5b846adf
authored
Jul 07, 2008
by
Stefan Dösinger
Committed by
Alexandre Julliard
Jul 18, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Fix the MULTIPLYADD parameter orders in atifs.
parent
3a224fe2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
ati_fragment_shader.c
dlls/wined3d/ati_fragment_shader.c
+8
-8
No files found.
dlls/wined3d/ati_fragment_shader.c
View file @
5b846adf
...
...
@@ -577,13 +577,13 @@ static GLuint gen_ati_shader(struct texture_stage_op op[MAX_TEXTURES], WineD3D_G
case
WINED3DTOP_MULTIPLYADD
:
TRACE
(
"glColorFragmentOp3ATI(GL_MAD_ATI, %s, GL_NONE, GL_NONE, %s, GL_NONE, %s, %s, GL_NONE, %s, %s, GL_NONE, %s)
\n
"
,
debug_register
(
dstreg
),
debug_register
(
arg
0
),
debug_argmod
(
argmod0
),
debug_register
(
arg
1
),
debug_argmod
(
argmod1
),
debug_register
(
arg2
),
debug_argmod
(
argmod2
),
debug_register
(
arg
1
),
debug_argmod
(
argmod1
));
debug_register
(
arg
0
),
debug_argmod
(
argmod0
));
GL_EXTCALL
(
glColorFragmentOp3ATI
(
GL_MAD_ATI
,
dstreg
,
GL_NONE
,
GL_NONE
,
arg
0
,
GL_NONE
,
argmod0
,
arg
1
,
GL_NONE
,
argmod1
,
arg2
,
GL_NONE
,
argmod2
,
arg
1
,
GL_NONE
,
argmod1
));
arg
0
,
GL_NONE
,
argmod0
));
break
;
case
WINED3DTOP_LERP
:
...
...
@@ -735,13 +735,13 @@ static GLuint gen_ati_shader(struct texture_stage_op op[MAX_TEXTURES], WineD3D_G
case
WINED3DTOP_MULTIPLYADD
:
TRACE
(
"glAlphaFragmentOp3ATI(GL_MAD_ATI, %s, GL_NONE, %s, GL_NONE, %s, %s, GL_NONE, %s, %s, GL_NONE, %s)
\n
"
,
debug_register
(
dstreg
),
debug_register
(
arg
0
),
debug_argmod
(
argmod0
),
debug_register
(
arg
1
),
debug_argmod
(
argmod1
),
debug_register
(
arg2
),
debug_argmod
(
argmod2
),
debug_register
(
arg
1
),
debug_argmod
(
argmod1
));
debug_register
(
arg
0
),
debug_argmod
(
argmod0
));
GL_EXTCALL
(
glAlphaFragmentOp3ATI
(
GL_MAD_ATI
,
dstreg
,
GL_NONE
,
arg
0
,
GL_NONE
,
argmod0
,
arg
1
,
GL_NONE
,
argmod1
,
arg2
,
GL_NONE
,
argmod2
,
arg
1
,
GL_NONE
,
argmod1
));
arg
0
,
GL_NONE
,
argmod0
));
break
;
case
WINED3DTOP_LERP
:
...
...
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