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
f98c6e3c
Commit
f98c6e3c
authored
Jun 24, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Jun 24, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Allow the existence of other shader types in get_loop_control_const().
parent
943ed4e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
9 deletions
+11
-9
arb_program_shader.c
dlls/wined3d/arb_program_shader.c
+11
-9
No files found.
dlls/wined3d/arb_program_shader.c
View file @
f98c6e3c
...
...
@@ -4362,7 +4362,6 @@ static inline BOOL get_bool_const(const struct wined3d_shader_instruction *ins,
static
void
get_loop_control_const
(
const
struct
wined3d_shader_instruction
*
ins
,
IWineD3DBaseShaderImpl
*
This
,
UINT
idx
,
struct
loop_control
*
loop_control
)
{
BOOL
vshader
=
shader_is_vshader_version
(
This
->
baseShader
.
reg_maps
.
shader_version
.
type
);
struct
shader_arb_ctx_priv
*
priv
=
ins
->
ctx
->
backend_data
;
/* Integer constants can either be a local constant, or they can be stored in the shader
...
...
@@ -4389,23 +4388,26 @@ static void get_loop_control_const(const struct wined3d_shader_instruction *ins,
loop_control
->
step
=
0
;
return
;
}
else
switch
(
This
->
baseShader
.
reg_maps
.
shader_version
.
type
)
{
if
(
vshader
)
{
case
WINED3D_SHADER_TYPE_VERTEX
:
/* Count and aL start value are unsigned */
loop_control
->
count
=
priv
->
cur_vs_args
->
loop_ctrl
[
idx
][
0
];
loop_control
->
start
=
priv
->
cur_vs_args
->
loop_ctrl
[
idx
][
1
];
/* Step is signed. */
loop_control
->
step
=
((
char
)
priv
->
cur_vs_args
->
loop_ctrl
[
idx
][
2
]);
}
else
{
break
;
case
WINED3D_SHADER_TYPE_PIXEL
:
loop_control
->
count
=
priv
->
cur_ps_args
->
loop_ctrl
[
idx
][
0
];
loop_control
->
start
=
priv
->
cur_ps_args
->
loop_ctrl
[
idx
][
1
];
loop_control
->
step
=
((
char
)
priv
->
cur_ps_args
->
loop_ctrl
[
idx
][
2
]);
}
return
;
break
;
default:
FIXME
(
"Unhandled shader type %#x.
\n
"
,
This
->
baseShader
.
reg_maps
.
shader_version
.
type
);
break
;
}
}
...
...
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