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
12d4683f
Commit
12d4683f
authored
Feb 22, 2011
by
Rico Schüller
Committed by
Alexandre Julliard
Feb 23, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dcompiler: Implement ID3D11ShaderReflectionVariable::GetType().
parent
c647243e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
reflection.c
dlls/d3dcompiler_43/reflection.c
+8
-3
No files found.
dlls/d3dcompiler_43/reflection.c
View file @
12d4683f
...
...
@@ -33,10 +33,13 @@ enum D3DCOMPILER_SIGNATURE_ELEMENT_SIZE
const
struct
ID3D11ShaderReflectionConstantBufferVtbl
d3dcompiler_shader_reflection_constant_buffer_vtbl
;
const
struct
ID3D11ShaderReflectionVariableVtbl
d3dcompiler_shader_reflection_variable_vtbl
;
const
struct
ID3D11ShaderReflectionTypeVtbl
d3dcompiler_shader_reflection_type_vtbl
;
/* null objects - needed for invalid calls */
static
struct
d3dcompiler_shader_reflection_constant_buffer
null_constant_buffer
=
{{
&
d3dcompiler_shader_reflection_constant_buffer_vtbl
}};
static
struct
d3dcompiler_shader_reflection_variable
null_variable
=
{{
&
d3dcompiler_shader_reflection_variable_vtbl
},
&
null_constant_buffer
};
static
struct
d3dcompiler_shader_reflection_type
null_type
=
{{
&
d3dcompiler_shader_reflection_type_vtbl
}};
static
struct
d3dcompiler_shader_reflection_variable
null_variable
=
{{
&
d3dcompiler_shader_reflection_variable_vtbl
},
&
null_constant_buffer
,
&
null_type
};
static
BOOL
copy_name
(
const
char
*
ptr
,
char
**
name
)
{
...
...
@@ -711,9 +714,11 @@ static HRESULT STDMETHODCALLTYPE d3dcompiler_shader_reflection_variable_GetDesc(
static
ID3D11ShaderReflectionType
*
STDMETHODCALLTYPE
d3dcompiler_shader_reflection_variable_GetType
(
ID3D11ShaderReflectionVariable
*
iface
)
{
FIXME
(
"iface %p stub!
\n
"
,
iface
);
struct
d3dcompiler_shader_reflection_variable
*
This
=
impl_from_ID3D11ShaderReflectionVariable
(
iface
);
return
NULL
;
TRACE
(
"iface %p
\n
"
,
iface
);
return
&
This
->
type
->
ID3D11ShaderReflectionType_iface
;
}
static
ID3D11ShaderReflectionConstantBuffer
*
STDMETHODCALLTYPE
d3dcompiler_shader_reflection_variable_GetBuffer
(
...
...
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