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
e0a1442f
Commit
e0a1442f
authored
Apr 15, 2006
by
Ivan Gyurdiev
Committed by
Alexandre Julliard
Apr 18, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Dcl opcode takes 2 parameters.
parent
7e5f734e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
pixelshader.c
dlls/wined3d/pixelshader.c
+1
-1
vertexshader.c
dlls/wined3d/vertexshader.c
+1
-1
No files found.
dlls/wined3d/pixelshader.c
View file @
e0a1442f
...
@@ -662,7 +662,7 @@ CONST SHADER_OPCODE IWineD3DPixelShaderImpl_shader_ins[] = {
...
@@ -662,7 +662,7 @@ CONST SHADER_OPCODE IWineD3DPixelShaderImpl_shader_ins[] = {
/** FIXME: use direct access so add the others opcodes as stubs */
/** FIXME: use direct access so add the others opcodes as stubs */
/* DCL is a specil operation */
/* DCL is a specil operation */
{
D3DSIO_DCL
,
"dcl"
,
NULL
,
1
,
pshader_dcl
,
0
,
0
},
{
D3DSIO_DCL
,
"dcl"
,
NULL
,
2
,
pshader_dcl
,
0
,
0
},
{
D3DSIO_POW
,
"pow"
,
"POW"
,
3
,
pshader_pow
,
0
,
0
},
{
D3DSIO_POW
,
"pow"
,
"POW"
,
3
,
pshader_pow
,
0
,
0
},
{
D3DSIO_CRS
,
"crs"
,
"XPS"
,
3
,
pshader_crs
,
0
,
0
},
{
D3DSIO_CRS
,
"crs"
,
"XPS"
,
3
,
pshader_crs
,
0
,
0
},
/* TODO: sng can possibly be performed as
/* TODO: sng can possibly be performed as
...
...
dlls/wined3d/vertexshader.c
View file @
e0a1442f
...
@@ -611,7 +611,7 @@ CONST SHADER_OPCODE IWineD3DVertexShaderImpl_shader_ins[] = {
...
@@ -611,7 +611,7 @@ CONST SHADER_OPCODE IWineD3DVertexShaderImpl_shader_ins[] = {
/** FIXME: use direct access so add the others opcodes as stubs */
/** FIXME: use direct access so add the others opcodes as stubs */
/* DCL is a specil operation */
/* DCL is a specil operation */
{
D3DSIO_DCL
,
"dcl"
,
NULL
,
1
,
vshader_dcl
,
0
,
0
},
{
D3DSIO_DCL
,
"dcl"
,
NULL
,
2
,
vshader_dcl
,
0
,
0
},
{
D3DSIO_POW
,
"pow"
,
"POW"
,
3
,
vshader_pow
,
0
,
0
},
{
D3DSIO_POW
,
"pow"
,
"POW"
,
3
,
vshader_pow
,
0
,
0
},
{
D3DSIO_CRS
,
"crs"
,
"XPS"
,
3
,
vshader_crs
,
0
,
0
},
{
D3DSIO_CRS
,
"crs"
,
"XPS"
,
3
,
vshader_crs
,
0
,
0
},
/* TODO: sng can possibly be performed as
/* TODO: sng can possibly be performed as
...
...
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