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
739759bf
Commit
739759bf
authored
Aug 26, 2009
by
Rico Schüller
Committed by
Alexandre Julliard
Aug 27, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10: Parse variable flag.
parent
09e258a1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
d3d10_private.h
dlls/d3d10/d3d10_private.h
+1
-0
effect.c
dlls/d3d10/effect.c
+4
-1
No files found.
dlls/d3d10/d3d10_private.h
View file @
739759bf
...
...
@@ -66,6 +66,7 @@ struct d3d10_effect_variable
char
*
name
;
DWORD
buffer_offset
;
DWORD
annotation_count
;
DWORD
flag
;
};
struct
d3d10_effect_local_buffer
...
...
dlls/d3d10/effect.c
View file @
739759bf
...
...
@@ -428,7 +428,10 @@ static HRESULT parse_fx10_variable(struct d3d10_effect_variable *v, const char *
read_dword
(
ptr
,
&
v
->
buffer_offset
);
TRACE
(
"Variable offset in buffer: %#x.
\n
"
,
v
->
buffer_offset
);
skip_dword_unknown
(
ptr
,
2
);
skip_dword_unknown
(
ptr
,
1
);
read_dword
(
ptr
,
&
v
->
flag
);
TRACE
(
"Variable flag: %#x.
\n
"
,
v
->
flag
);
read_dword
(
ptr
,
&
v
->
annotation_count
);
for
(
i
=
0
;
i
<
v
->
annotation_count
;
++
i
)
...
...
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