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
a80903e5
Commit
a80903e5
authored
Aug 09, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 10, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: '0x' is redundant with the '#' format modifier.
parent
9c17c4cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
arb_program_shader.c
dlls/wined3d/arb_program_shader.c
+2
-2
No files found.
dlls/wined3d/arb_program_shader.c
View file @
a80903e5
...
...
@@ -614,10 +614,10 @@ void pshader_hw_map2gl(SHADER_OPCODE_ARG* arg) {
partialprecision
=
mask
&
WINED3DSPDM_PARTIALPRECISION
;
mask
&=
~
(
WINED3DSPDM_MSAMPCENTROID
|
WINED3DSPDM_PARTIALPRECISION
|
WINED3DSPDM_SATURATE
);
if
(
mask
)
FIXME
(
"Unrecognized modifier(
0x
%#x)
\n
"
,
mask
>>
WINED3DSP_DSTMOD_SHIFT
);
FIXME
(
"Unrecognized modifier(%#x)
\n
"
,
mask
>>
WINED3DSP_DSTMOD_SHIFT
);
if
(
centroid
)
FIXME
(
"Unhandled modifier(
0x
%#x)
\n
"
,
mask
>>
WINED3DSP_DSTMOD_SHIFT
);
FIXME
(
"Unhandled modifier(%#x)
\n
"
,
mask
>>
WINED3DSP_DSTMOD_SHIFT
);
}
shift
=
(
dst
&
WINED3DSP_DSTSHIFT_MASK
)
>>
WINED3DSP_DSTSHIFT_SHIFT
;
...
...
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