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
0ea6f795
Commit
0ea6f795
authored
Jul 17, 2010
by
Matteo Bruni
Committed by
Alexandre Julliard
Jul 19, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9: Error out on dcl output instruction where not supported.
parent
d76e3ac9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
asmparser.c
dlls/d3dx9_36/asmparser.c
+11
-5
No files found.
dlls/d3dx9_36/asmparser.c
View file @
0ea6f795
...
...
@@ -116,6 +116,12 @@ static void asmparser_dcl_output(struct asm_parser *This, DWORD usage, DWORD num
}
}
static
void
asmparser_dcl_output_unsupported
(
struct
asm_parser
*
This
,
DWORD
usage
,
DWORD
num
,
const
struct
shader_reg
*
reg
)
{
asmparser_message
(
This
,
"Line %u: Output declaration unsupported in this shader version
\n
"
,
This
->
line_no
);
set_parse_status
(
This
,
PARSE_ERR
);
}
static
void
asmparser_dcl_input
(
struct
asm_parser
*
This
,
DWORD
usage
,
DWORD
num
,
DWORD
mod
,
const
struct
shader_reg
*
reg
)
{
struct
instruction
instr
;
...
...
@@ -783,7 +789,7 @@ static const struct asmparser_backend parser_vs_1 = {
asmparser_predicate_unsupported
,
asmparser_coissue_unsupported
,
asmparser_dcl_output
,
asmparser_dcl_output
_unsupported
,
asmparser_dcl_input
,
asmparser_dcl_sampler_unsupported
,
...
...
@@ -803,7 +809,7 @@ static const struct asmparser_backend parser_vs_2 = {
asmparser_predicate_supported
,
asmparser_coissue_unsupported
,
asmparser_dcl_output
,
asmparser_dcl_output
_unsupported
,
asmparser_dcl_input
,
asmparser_dcl_sampler_unsupported
,
...
...
@@ -843,7 +849,7 @@ static const struct asmparser_backend parser_ps_2 = {
asmparser_predicate_unsupported
,
asmparser_coissue_unsupported
,
asmparser_dcl_output
,
asmparser_dcl_output
_unsupported
,
asmparser_dcl_input_ps_2
,
asmparser_dcl_sampler
,
...
...
@@ -863,7 +869,7 @@ static const struct asmparser_backend parser_ps_2_x = {
asmparser_predicate_supported
,
asmparser_coissue_unsupported
,
asmparser_dcl_output
,
asmparser_dcl_output
_unsupported
,
asmparser_dcl_input_ps_2
,
asmparser_dcl_sampler
,
...
...
@@ -883,7 +889,7 @@ static const struct asmparser_backend parser_ps_3 = {
asmparser_predicate_supported
,
asmparser_coissue_unsupported
,
asmparser_dcl_output
,
asmparser_dcl_output
_unsupported
,
asmparser_dcl_input
,
asmparser_dcl_sampler
,
...
...
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