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
3ca651cc
Commit
3ca651cc
authored
Feb 28, 2011
by
Rico Schüller
Committed by
Alexandre Julliard
Mar 01, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dcompiler: Implement ID3D11ShaderReflectionType::GetMemberTypeByIndex().
parent
a3004811
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
reflection.c
dlls/d3dcompiler_43/reflection.c
+10
-2
No files found.
dlls/d3dcompiler_43/reflection.c
View file @
3ca651cc
...
...
@@ -801,9 +801,17 @@ static HRESULT STDMETHODCALLTYPE d3dcompiler_shader_reflection_type_GetDesc(
static
ID3D11ShaderReflectionType
*
STDMETHODCALLTYPE
d3dcompiler_shader_reflection_type_GetMemberTypeByIndex
(
ID3D11ShaderReflectionType
*
iface
,
UINT
index
)
{
FIXME
(
"iface %p, index %u stub!
\n
"
,
iface
,
index
);
struct
d3dcompiler_shader_reflection_type
*
This
=
impl_from_ID3D11ShaderReflectionType
(
iface
);
return
NULL
;
TRACE
(
"iface %p, index %u
\n
"
,
iface
,
index
);
if
(
index
>=
This
->
desc
.
Members
)
{
WARN
(
"Invalid index specified
\n
"
);
return
&
null_type
.
ID3D11ShaderReflectionType_iface
;
}
return
&
This
->
members
[
index
].
type
->
ID3D11ShaderReflectionType_iface
;
}
static
ID3D11ShaderReflectionType
*
STDMETHODCALLTYPE
d3dcompiler_shader_reflection_type_GetMemberTypeByName
(
...
...
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