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
f63f6fc0
Commit
f63f6fc0
authored
Sep 09, 2009
by
Rico Schüller
Committed by
Alexandre Julliard
Sep 10, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10: Implement annotation parsing.
parent
7c156c57
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
d3d10_private.h
dlls/d3d10/d3d10_private.h
+6
-0
effect.c
dlls/d3d10/effect.c
+0
-0
No files found.
dlls/d3d10/d3d10_private.h
View file @
f63f6fc0
...
...
@@ -91,11 +91,14 @@ struct d3d10_effect_variable
const
struct
ID3D10EffectVariableVtbl
*
vtbl
;
struct
d3d10_effect_local_buffer
*
buffer
;
struct
d3d10_effect
*
effect
;
char
*
name
;
DWORD
buffer_offset
;
DWORD
annotation_count
;
DWORD
flag
;
struct
d3d10_effect_type
*
type
;
struct
d3d10_effect_variable
*
annotations
;
};
struct
d3d10_effect_local_buffer
...
...
@@ -108,6 +111,7 @@ struct d3d10_effect_local_buffer
DWORD
variable_count
;
DWORD
annotation_count
;
struct
d3d10_effect_variable
*
variables
;
struct
d3d10_effect_variable
*
annotations
;
};
/* ID3D10EffectPass */
...
...
@@ -121,6 +125,7 @@ struct d3d10_effect_pass
DWORD
object_count
;
DWORD
annotation_count
;
struct
d3d10_effect_object
*
objects
;
struct
d3d10_effect_variable
*
annotations
;
};
/* ID3D10EffectTechnique */
...
...
@@ -133,6 +138,7 @@ struct d3d10_effect_technique
DWORD
pass_count
;
DWORD
annotation_count
;
struct
d3d10_effect_pass
*
passes
;
struct
d3d10_effect_variable
*
annotations
;
};
/* ID3D10Effect */
...
...
dlls/d3d10/effect.c
View file @
f63f6fc0
This diff is collapsed.
Click to expand it.
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