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
34f6d493
Commit
34f6d493
authored
Jul 22, 2007
by
H. Verbeet
Committed by
Alexandre Julliard
Jul 23, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Fix the shader version on some instruction tokens.
parent
35aa2ce9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
pixelshader.c
dlls/wined3d/pixelshader.c
+3
-3
No files found.
dlls/wined3d/pixelshader.c
View file @
34f6d493
...
...
@@ -181,7 +181,7 @@ CONST SHADER_OPCODE IWineD3DPixelShaderImpl_shader_ins[] = {
{
WINED3DSIO_DST
,
"dst"
,
"DST"
,
1
,
3
,
pshader_hw_map2gl
,
shader_glsl_dst
,
0
,
0
},
{
WINED3DSIO_LRP
,
"lrp"
,
"LRP"
,
1
,
4
,
pshader_hw_map2gl
,
shader_glsl_lrp
,
0
,
0
},
{
WINED3DSIO_FRC
,
"frc"
,
"FRC"
,
1
,
2
,
pshader_hw_map2gl
,
shader_glsl_map2gl
,
0
,
0
},
{
WINED3DSIO_CND
,
"cnd"
,
NULL
,
1
,
4
,
pshader_hw_cnd
,
shader_glsl_cnd
,
WINED3DPS_VERSION
(
1
,
1
),
WINED3DPS_VERSION
(
1
,
4
)},
{
WINED3DSIO_CND
,
"cnd"
,
NULL
,
1
,
4
,
pshader_hw_cnd
,
shader_glsl_cnd
,
WINED3DPS_VERSION
(
1
,
0
),
WINED3DPS_VERSION
(
1
,
4
)},
{
WINED3DSIO_CMP
,
"cmp"
,
NULL
,
1
,
4
,
pshader_hw_cmp
,
shader_glsl_cmp
,
WINED3DPS_VERSION
(
1
,
2
),
WINED3DPS_VERSION
(
3
,
0
)},
{
WINED3DSIO_POW
,
"pow"
,
"POW"
,
1
,
3
,
NULL
,
shader_glsl_pow
,
0
,
0
},
{
WINED3DSIO_CRS
,
"crs"
,
"XPS"
,
1
,
3
,
NULL
,
shader_glsl_cross
,
0
,
0
},
...
...
@@ -236,8 +236,8 @@ CONST SHADER_OPCODE IWineD3DPixelShaderImpl_shader_ins[] = {
{
WINED3DSIO_TEX
,
"texld"
,
"undefined"
,
1
,
3
,
pshader_hw_tex
,
pshader_glsl_tex
,
WINED3DPS_VERSION
(
2
,
0
),
-
1
},
{
WINED3DSIO_TEXBEM
,
"texbem"
,
"undefined"
,
1
,
2
,
pshader_hw_texbem
,
pshader_glsl_texbem
,
0
,
WINED3DPS_VERSION
(
1
,
3
)},
{
WINED3DSIO_TEXBEML
,
"texbeml"
,
GLNAME_REQUIRE_GLSL
,
1
,
2
,
NULL
,
NULL
,
WINED3DPS_VERSION
(
1
,
0
),
WINED3DPS_VERSION
(
1
,
3
)},
{
WINED3DSIO_TEXREG2AR
,
"texreg2ar"
,
"undefined"
,
1
,
2
,
pshader_hw_texreg2ar
,
pshader_glsl_texreg2ar
,
WINED3DPS_VERSION
(
1
,
1
),
WINED3DPS_VERSION
(
1
,
3
)},
{
WINED3DSIO_TEXREG2GB
,
"texreg2gb"
,
"undefined"
,
1
,
2
,
pshader_hw_texreg2gb
,
pshader_glsl_texreg2gb
,
WINED3DPS_VERSION
(
1
,
1
),
WINED3DPS_VERSION
(
1
,
3
)},
{
WINED3DSIO_TEXREG2AR
,
"texreg2ar"
,
"undefined"
,
1
,
2
,
pshader_hw_texreg2ar
,
pshader_glsl_texreg2ar
,
WINED3DPS_VERSION
(
1
,
0
),
WINED3DPS_VERSION
(
1
,
3
)},
{
WINED3DSIO_TEXREG2GB
,
"texreg2gb"
,
"undefined"
,
1
,
2
,
pshader_hw_texreg2gb
,
pshader_glsl_texreg2gb
,
WINED3DPS_VERSION
(
1
,
0
),
WINED3DPS_VERSION
(
1
,
3
)},
{
WINED3DSIO_TEXREG2RGB
,
"texreg2rgb"
,
GLNAME_REQUIRE_GLSL
,
1
,
2
,
NULL
,
pshader_glsl_texreg2rgb
,
WINED3DPS_VERSION
(
1
,
2
),
WINED3DPS_VERSION
(
1
,
3
)},
{
WINED3DSIO_TEXM3x2PAD
,
"texm3x2pad"
,
"undefined"
,
1
,
2
,
pshader_hw_texm3x2pad
,
pshader_glsl_texm3x2pad
,
WINED3DPS_VERSION
(
1
,
0
),
WINED3DPS_VERSION
(
1
,
3
)},
{
WINED3DSIO_TEXM3x2TEX
,
"texm3x2tex"
,
"undefined"
,
1
,
2
,
pshader_hw_texm3x2tex
,
pshader_glsl_texm3x2tex
,
WINED3DPS_VERSION
(
1
,
0
),
WINED3DPS_VERSION
(
1
,
3
)},
...
...
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