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
6b5d0763
Commit
6b5d0763
authored
May 17, 2006
by
Ivan Gyurdiev
Committed by
Alexandre Julliard
May 17, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: DEFI takes 5 parameters.
According the spec and the Painkiller log, DEFI has 5 parameters on vertex shaders.
parent
f839a179
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vertexshader.c
dlls/wined3d/vertexshader.c
+2
-2
No files found.
dlls/wined3d/vertexshader.c
View file @
6b5d0763
...
...
@@ -456,7 +456,7 @@ void vshader_defb(WINED3DSHADERVECTOR* d) {
FIXME
(
" : Stub
\n
"
);
}
void
vshader_defi
(
WINED3DSHADERVECTOR
*
d
)
{
void
vshader_defi
(
WINED3DSHADERVECTOR
*
d
,
WINED3DSHADERVECTOR
*
s0
,
WINED3DSHADERVECTOR
*
s1
,
WINED3DSHADERVECTOR
*
s2
,
WINED3DSHADERVECTOR
*
s3
)
{
FIXME
(
" : Stub
\n
"
);
}
...
...
@@ -539,7 +539,7 @@ CONST SHADER_OPCODE IWineD3DVertexShaderImpl_shader_ins[] = {
/* Constant definitions */
{
D3DSIO_DEF
,
"def"
,
NULL
,
5
,
vshader_def
,
vshader_hw_def
,
NULL
,
0
,
0
},
{
D3DSIO_DEFB
,
"defb"
,
GLNAME_REQUIRE_GLSL
,
2
,
vshader_defb
,
NULL
,
NULL
,
0
,
0
},
{
D3DSIO_DEFI
,
"defi"
,
GLNAME_REQUIRE_GLSL
,
2
,
vshader_defi
,
NULL
,
NULL
,
0
,
0
},
{
D3DSIO_DEFI
,
"defi"
,
GLNAME_REQUIRE_GLSL
,
5
,
vshader_defi
,
NULL
,
NULL
,
0
,
0
},
/* Flow control - requires GLSL or software shaders */
{
D3DSIO_REP
,
"rep"
,
GLNAME_REQUIRE_GLSL
,
1
,
vshader_rep
,
NULL
,
NULL
,
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