Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sebastian Mayr
wine
Commits
89245248
Commit
89245248
authored
17 years ago
by
Henri Verbeet
Committed by
Alexandre Julliard
17 years ago
Browse files
Options
Downloads
Patches
Plain Diff
wined3d: Handle the ps_3_0 vPos field.
parent
5d009230
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/wined3d/baseshader.c
+8
-0
8 additions, 0 deletions
dlls/wined3d/baseshader.c
dlls/wined3d/glsl_shader.c
+12
-0
12 additions, 0 deletions
dlls/wined3d/glsl_shader.c
with
20 additions
and
0 deletions
dlls/wined3d/baseshader.c
+
8
−
0
View file @
89245248
...
...
@@ -519,6 +519,7 @@ void shader_dump_param(
IWineD3DBaseShaderImpl
*
This
=
(
IWineD3DBaseShaderImpl
*
)
iface
;
static
const
char
*
const
rastout_reg_names
[]
=
{
"oPos"
,
"oFog"
,
"oPts"
};
static
const
char
*
const
misctype_reg_names
[]
=
{
"vPos"
,
"vFace"
};
char
swizzle_reg_chars
[
4
];
DWORD
reg
=
param
&
WINED3DSP_REGNUM_MASK
;
...
...
@@ -611,6 +612,13 @@ void shader_dump_param(
case
WINED3DSPR_SAMPLER
:
TRACE
(
"s%u"
,
reg
);
break
;
case
WINED3DSPR_MISCTYPE
:
if
(
reg
>
1
)
{
FIXME
(
"Unhandled misctype register %d
\n
"
,
reg
);
}
else
{
TRACE
(
"%s"
,
misctype_reg_names
[
reg
]);
}
break
;
case
WINED3DSPR_PREDICATE
:
TRACE
(
"p%u"
,
reg
);
break
;
...
...
This diff is collapsed.
Click to expand it.
dlls/wined3d/glsl_shader.c
+
12
−
0
View file @
89245248
...
...
@@ -690,6 +690,18 @@ static void shader_glsl_get_register_name(
else
sprintf
(
tmpStr
,
"gl_TexCoord[%u]"
,
reg
);
break
;
case
WINED3DSPR_MISCTYPE
:
if
(
reg
==
0
)
{
/* vPos */
sprintf
(
tmpStr
,
"gl_FragCoord"
);
}
else
{
/* gl_FrontFacing could be used for vFace, but note that
* gl_FrontFacing is a bool, while vFace is a float for
* which the sign determines front/back */
FIXME
(
"Unhandled misctype register %d
\n
"
,
reg
);
sprintf
(
tmpStr
,
"unrecognized_register"
);
}
break
;
default:
FIXME
(
"Unhandled register name Type(%d)
\n
"
,
regtype
);
sprintf
(
tmpStr
,
"unrecognized_register"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment