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
ca1a979c
Commit
ca1a979c
authored
May 07, 2009
by
Stefan Dösinger
Committed by
Alexandre Julliard
May 13, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Tidy up pshader_hw_cmp.
parent
c06aa361
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
8 deletions
+2
-8
arb_program_shader.c
dlls/wined3d/arb_program_shader.c
+2
-8
No files found.
dlls/wined3d/arb_program_shader.c
View file @
ca1a979c
...
...
@@ -857,24 +857,18 @@ static void pshader_hw_cmp(const struct wined3d_shader_instruction *ins)
{
const
struct
wined3d_shader_dst_param
*
dst
=
&
ins
->
dst
[
0
];
SHADER_BUFFER
*
buffer
=
ins
->
ctx
->
buffer
;
char
dst_wmask
[
20
];
char
dst_name
[
50
];
char
src_name
[
3
][
50
];
BOOL
sat
=
dst
->
modifiers
&
WINED3DSPDM_SATURATE
;
BOOL
is_color
;
/* FIXME: support output modifiers */
/* Handle output register */
shader_arb_get_register_name
(
ins
->
ctx
->
shader
,
&
dst
->
reg
,
dst_name
,
&
is_color
);
shader_arb_get_write_mask
(
ins
,
dst
,
dst_wmask
);
shader_arb_get_dst_param
(
ins
,
dst
,
dst_name
);
/* Generate input register names (with modifiers) */
shader_arb_get_src_param
(
ins
,
&
ins
->
src
[
0
],
0
,
src_name
[
0
]);
shader_arb_get_src_param
(
ins
,
&
ins
->
src
[
1
],
1
,
src_name
[
1
]);
shader_arb_get_src_param
(
ins
,
&
ins
->
src
[
2
],
2
,
src_name
[
2
]);
shader_addline
(
buffer
,
"CMP%s %s
%s, %s, %s, %s;
\n
"
,
sat
?
"_SAT"
:
""
,
dst_name
,
dst_wmask
,
shader_addline
(
buffer
,
"CMP%s %s
, %s, %s, %s;
\n
"
,
sat
?
"_SAT"
:
""
,
dst_name
,
src_name
[
0
],
src_name
[
2
],
src_name
[
1
]);
}
...
...
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