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
7b3863fe
Commit
7b3863fe
authored
Jan 22, 2012
by
Rico Schüller
Committed by
Alexandre Julliard
Jan 23, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9: Fix constant table trace.
parent
6ad34b16
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
shader.c
dlls/d3dx9_36/shader.c
+3
-6
No files found.
dlls/d3dx9_36/shader.c
View file @
7b3863fe
...
...
@@ -1223,12 +1223,9 @@ HRESULT WINAPI D3DXGetShaderConstantTableEx(CONST DWORD *byte_code,
object
->
desc
.
Creator
=
ctab_header
->
Creator
?
object
->
ctab
+
ctab_header
->
Creator
:
NULL
;
object
->
desc
.
Version
=
ctab_header
->
Version
;
object
->
desc
.
Constants
=
ctab_header
->
Constants
;
if
(
object
->
desc
.
Creator
)
TRACE
(
"Creator = %s
\n
"
,
object
->
desc
.
Creator
);
TRACE
(
"Version = %x
\n
"
,
object
->
desc
.
Version
);
TRACE
(
"Constants = %d
\n
"
,
ctab_header
->
Constants
);
if
(
ctab_header
->
Target
)
TRACE
(
"Target = %s
\n
"
,
object
->
ctab
+
ctab_header
->
Target
);
TRACE
(
"Creator %s, Version %x, Constants %u, Target %s
\n
"
,
debugstr_a
(
object
->
desc
.
Creator
),
object
->
desc
.
Version
,
object
->
desc
.
Constants
,
debugstr_a
(
ctab_header
->
Target
?
object
->
ctab
+
ctab_header
->
Target
:
NULL
));
if
(
object
->
desc
.
Constants
>
65535
)
{
...
...
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