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
ac8f8c02
Commit
ac8f8c02
authored
Oct 15, 2010
by
Henri Verbeet
Committed by
Alexandre Julliard
Oct 15, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dcompiler: Remove some stray tabs.
parent
8ebc1800
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
8 deletions
+9
-8
asmparser.c
dlls/d3dcompiler_43/asmparser.c
+7
-6
asmshader.y
dlls/d3dcompiler_43/asmshader.y
+1
-1
d3dcompiler_private.h
dlls/d3dcompiler_43/d3dcompiler_private.h
+1
-1
No files found.
dlls/d3dcompiler_43/asmparser.c
View file @
ac8f8c02
...
...
@@ -161,8 +161,9 @@ static void asmparser_dcl_input_ps_2(struct asm_parser *This, DWORD usage, DWORD
}
}
static
void
asmparser_dcl_input_unsupported
(
struct
asm_parser
*
This
,
DWORD
usage
,
DWORD
num
,
DWORD
mod
,
const
struct
shader_reg
*
reg
)
{
static
void
asmparser_dcl_input_unsupported
(
struct
asm_parser
*
This
,
DWORD
usage
,
DWORD
num
,
DWORD
mod
,
const
struct
shader_reg
*
reg
)
{
asmparser_message
(
This
,
"Line %u: Input declaration unsupported in this shader version
\n
"
,
This
->
line_no
);
set_parse_status
(
This
,
PARSE_ERR
);
}
...
...
@@ -185,9 +186,9 @@ static void asmparser_dcl_sampler(struct asm_parser *This, DWORD samptype,
}
}
static
void
asmparser_dcl_sampler_unsupported
(
struct
asm_parser
*
This
,
DWORD
samptype
,
DWORD
mod
,
DWORD
regnum
,
unsigned
int
line_no
)
{
static
void
asmparser_dcl_sampler_unsupported
(
struct
asm_parser
*
This
,
DWORD
samptype
,
DWORD
mod
,
DWORD
regnum
,
unsigned
int
line_no
)
{
asmparser_message
(
This
,
"Line %u: Sampler declaration unsupported in this shader version
\n
"
,
This
->
line_no
);
set_parse_status
(
This
,
PARSE_ERR
);
}
...
...
@@ -538,7 +539,7 @@ ns */
return
;
}
/* Use the default handling */
break
;
break
;
case
BWRITERSIO_TEXCOORD
:
/* texcoord/texcrd are two instructions present only in PS <= 1.3 and PS 1.4 respectively */
if
(
This
->
shader
->
version
==
BWRITERPS_VERSION
(
1
,
4
))
...
...
dlls/d3dcompiler_43/asmshader.y
View file @
ac8f8c02
...
...
@@ -1053,7 +1053,7 @@ dreg_name: REG_TEMP
}
| REG_CONSTINT
{
asmparser_message(&asm_ctx, "Line %u: Register i%u is not a valid destination register\n",
asmparser_message(&asm_ctx, "Line %u: Register i%u is not a valid destination register\n",
asm_ctx.line_no, $1);
set_parse_status(&asm_ctx, PARSE_WARN);
}
...
...
dlls/d3dcompiler_43/d3dcompiler_private.h
View file @
ac8f8c02
...
...
@@ -290,7 +290,7 @@ typedef void (*instr_writer)(struct bc_writer *This,
struct
bytecode_backend
{
void
(
*
header
)(
struct
bc_writer
*
This
,
const
struct
bwriter_shader
*
shader
,
struct
bytecode_buffer
*
buffer
);
struct
bytecode_buffer
*
buffer
);
void
(
*
end
)(
struct
bc_writer
*
This
,
const
struct
bwriter_shader
*
shader
,
struct
bytecode_buffer
*
buffer
);
void
(
*
srcreg
)(
struct
bc_writer
*
This
,
const
struct
shader_reg
*
reg
,
...
...
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