2009-02-26 09:00:01 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2009 Henri Verbeet for CodeWeavers
|
2010-01-10 19:30:36 +01:00
|
|
|
* Copyright 2009 Rico Schüller
|
2009-02-26 09:00:01 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "wine/port.h"
|
|
|
|
|
|
|
|
#include "d3d10_private.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d10);
|
|
|
|
|
2009-09-08 16:37:57 +02:00
|
|
|
#define D3D10_FX10_TYPE_COLUMN_SHIFT 11
|
|
|
|
#define D3D10_FX10_TYPE_COLUMN_MASK (0x7 << D3D10_FX10_TYPE_COLUMN_SHIFT)
|
|
|
|
|
|
|
|
#define D3D10_FX10_TYPE_ROW_SHIFT 8
|
|
|
|
#define D3D10_FX10_TYPE_ROW_MASK (0x7 << D3D10_FX10_TYPE_ROW_SHIFT)
|
|
|
|
|
2009-09-08 16:37:58 +02:00
|
|
|
#define D3D10_FX10_TYPE_BASETYPE_SHIFT 3
|
|
|
|
#define D3D10_FX10_TYPE_BASETYPE_MASK (0x1f << D3D10_FX10_TYPE_BASETYPE_SHIFT)
|
|
|
|
|
|
|
|
#define D3D10_FX10_TYPE_CLASS_SHIFT 0
|
|
|
|
#define D3D10_FX10_TYPE_CLASS_MASK (0x7 << D3D10_FX10_TYPE_CLASS_SHIFT)
|
|
|
|
|
2009-10-25 17:11:42 +01:00
|
|
|
#define D3D10_FX10_TYPE_MATRIX_COLUMN_MAJOR_MASK 0x4000
|
|
|
|
|
2009-03-02 08:52:49 +01:00
|
|
|
static const struct ID3D10EffectTechniqueVtbl d3d10_effect_technique_vtbl;
|
2009-03-02 08:52:49 +01:00
|
|
|
static const struct ID3D10EffectPassVtbl d3d10_effect_pass_vtbl;
|
2009-07-15 12:21:21 +02:00
|
|
|
static const struct ID3D10EffectVariableVtbl d3d10_effect_variable_vtbl;
|
2009-08-20 19:05:35 +02:00
|
|
|
static const struct ID3D10EffectConstantBufferVtbl d3d10_effect_constant_buffer_vtbl;
|
2009-09-09 18:12:41 +02:00
|
|
|
static const struct ID3D10EffectScalarVariableVtbl d3d10_effect_scalar_variable_vtbl;
|
2009-09-09 18:12:42 +02:00
|
|
|
static const struct ID3D10EffectVectorVariableVtbl d3d10_effect_vector_variable_vtbl;
|
2009-09-09 18:12:43 +02:00
|
|
|
static const struct ID3D10EffectMatrixVariableVtbl d3d10_effect_matrix_variable_vtbl;
|
2009-10-26 18:38:57 +01:00
|
|
|
static const struct ID3D10EffectStringVariableVtbl d3d10_effect_string_variable_vtbl;
|
2009-10-26 18:39:00 +01:00
|
|
|
static const struct ID3D10EffectShaderResourceVariableVtbl d3d10_effect_shader_resource_variable_vtbl;
|
2009-10-26 18:39:04 +01:00
|
|
|
static const struct ID3D10EffectRenderTargetViewVariableVtbl d3d10_effect_render_target_view_variable_vtbl;
|
2009-10-26 18:39:11 +01:00
|
|
|
static const struct ID3D10EffectDepthStencilViewVariableVtbl d3d10_effect_depth_stencil_view_variable_vtbl;
|
2009-10-26 18:39:15 +01:00
|
|
|
static const struct ID3D10EffectShaderVariableVtbl d3d10_effect_shader_variable_vtbl;
|
2009-10-26 18:38:31 +01:00
|
|
|
static const struct ID3D10EffectBlendVariableVtbl d3d10_effect_blend_variable_vtbl;
|
2009-10-26 18:38:46 +01:00
|
|
|
static const struct ID3D10EffectDepthStencilVariableVtbl d3d10_effect_depth_stencil_variable_vtbl;
|
2009-10-26 18:38:50 +01:00
|
|
|
static const struct ID3D10EffectRasterizerVariableVtbl d3d10_effect_rasterizer_variable_vtbl;
|
2009-10-26 18:38:53 +01:00
|
|
|
static const struct ID3D10EffectSamplerVariableVtbl d3d10_effect_sampler_variable_vtbl;
|
2009-09-08 16:38:00 +02:00
|
|
|
static const struct ID3D10EffectTypeVtbl d3d10_effect_type_vtbl;
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2009-08-29 20:35:37 +02:00
|
|
|
/* null objects - needed for invalid calls */
|
2010-01-10 19:30:36 +01:00
|
|
|
static struct d3d10_effect_technique null_technique = {&d3d10_effect_technique_vtbl};
|
|
|
|
static struct d3d10_effect_pass null_pass = {&d3d10_effect_pass_vtbl};
|
|
|
|
static struct d3d10_effect_type null_type = {&d3d10_effect_type_vtbl};
|
2010-03-27 10:36:26 +01:00
|
|
|
static struct d3d10_effect_variable null_local_buffer = {(const ID3D10EffectVariableVtbl *)&d3d10_effect_constant_buffer_vtbl,
|
2010-01-10 19:30:36 +01:00
|
|
|
&null_local_buffer, &null_type};
|
|
|
|
static struct d3d10_effect_variable null_variable = {&d3d10_effect_variable_vtbl,
|
|
|
|
&null_local_buffer, &null_type};
|
2010-03-27 10:36:26 +01:00
|
|
|
static struct d3d10_effect_variable null_scalar_variable = {(const ID3D10EffectVariableVtbl *)&d3d10_effect_scalar_variable_vtbl,
|
2010-01-10 19:30:36 +01:00
|
|
|
&null_local_buffer, &null_type};
|
2010-03-27 10:36:26 +01:00
|
|
|
static struct d3d10_effect_variable null_vector_variable = {(const ID3D10EffectVariableVtbl *)&d3d10_effect_vector_variable_vtbl,
|
2010-01-10 19:30:36 +01:00
|
|
|
&null_local_buffer, &null_type};
|
2010-03-27 10:36:26 +01:00
|
|
|
static struct d3d10_effect_variable null_matrix_variable = {(const ID3D10EffectVariableVtbl *)&d3d10_effect_matrix_variable_vtbl,
|
2010-01-10 19:30:36 +01:00
|
|
|
&null_local_buffer, &null_type};
|
2010-03-27 10:36:26 +01:00
|
|
|
static struct d3d10_effect_variable null_string_variable = {(const ID3D10EffectVariableVtbl *)&d3d10_effect_string_variable_vtbl,
|
2010-01-10 19:30:36 +01:00
|
|
|
&null_local_buffer, &null_type};
|
2010-03-27 10:36:26 +01:00
|
|
|
static struct d3d10_effect_variable null_shader_resource_variable = {(const ID3D10EffectVariableVtbl *)&d3d10_effect_shader_resource_variable_vtbl,
|
2010-01-10 19:30:36 +01:00
|
|
|
&null_local_buffer, &null_type};
|
2010-03-27 10:36:26 +01:00
|
|
|
static struct d3d10_effect_variable null_render_target_view_variable = {(const ID3D10EffectVariableVtbl *)&d3d10_effect_render_target_view_variable_vtbl,
|
2010-01-10 19:30:36 +01:00
|
|
|
&null_local_buffer, &null_type};
|
2010-03-27 10:36:26 +01:00
|
|
|
static struct d3d10_effect_variable null_depth_stencil_view_variable = {(const ID3D10EffectVariableVtbl *)&d3d10_effect_depth_stencil_view_variable_vtbl,
|
2010-01-10 19:30:36 +01:00
|
|
|
&null_local_buffer, &null_type};
|
2010-03-27 10:36:26 +01:00
|
|
|
static struct d3d10_effect_variable null_shader_variable = {(const ID3D10EffectVariableVtbl *)&d3d10_effect_shader_variable_vtbl,
|
2010-01-10 19:30:36 +01:00
|
|
|
&null_local_buffer, &null_type};
|
2010-03-27 10:36:26 +01:00
|
|
|
static struct d3d10_effect_variable null_blend_variable = {(const ID3D10EffectVariableVtbl *)&d3d10_effect_blend_variable_vtbl,
|
2010-01-10 19:30:36 +01:00
|
|
|
&null_local_buffer, &null_type};
|
2010-03-27 10:36:26 +01:00
|
|
|
static struct d3d10_effect_variable null_depth_stencil_variable = {(const ID3D10EffectVariableVtbl *)&d3d10_effect_depth_stencil_variable_vtbl,
|
2010-01-10 19:30:36 +01:00
|
|
|
&null_local_buffer, &null_type};
|
2010-03-27 10:36:26 +01:00
|
|
|
static struct d3d10_effect_variable null_rasterizer_variable = {(const ID3D10EffectVariableVtbl *)&d3d10_effect_rasterizer_variable_vtbl,
|
2010-01-10 19:30:36 +01:00
|
|
|
&null_local_buffer, &null_type};
|
2010-03-27 10:36:26 +01:00
|
|
|
static struct d3d10_effect_variable null_sampler_variable = {(const ID3D10EffectVariableVtbl *)&d3d10_effect_sampler_variable_vtbl,
|
2010-01-10 19:30:36 +01:00
|
|
|
&null_local_buffer, &null_type};
|
2009-08-29 20:35:37 +02:00
|
|
|
|
2010-01-24 14:25:19 +01:00
|
|
|
/* anonymous_shader_type and anonymous_shader */
|
|
|
|
static char anonymous_name[] = "$Anonymous";
|
|
|
|
static char anonymous_vertexshader_name[] = "vertexshader";
|
|
|
|
static char anonymous_pixelshader_name[] = "pixelshader";
|
|
|
|
static char anonymous_geometryshader_name[] = "geometryshader";
|
|
|
|
static struct d3d10_effect_type anonymous_vs_type = {&d3d10_effect_type_vtbl, anonymous_vertexshader_name,
|
|
|
|
D3D10_SVT_VERTEXSHADER, D3D10_SVC_OBJECT};
|
|
|
|
static struct d3d10_effect_type anonymous_ps_type = {&d3d10_effect_type_vtbl, anonymous_pixelshader_name,
|
|
|
|
D3D10_SVT_PIXELSHADER, D3D10_SVC_OBJECT};
|
|
|
|
static struct d3d10_effect_type anonymous_gs_type = {&d3d10_effect_type_vtbl, anonymous_geometryshader_name,
|
|
|
|
D3D10_SVT_GEOMETRYSHADER, D3D10_SVC_OBJECT};
|
2010-03-27 10:36:26 +01:00
|
|
|
static struct d3d10_effect_variable anonymous_vs = {(const ID3D10EffectVariableVtbl *)&d3d10_effect_shader_variable_vtbl,
|
2010-01-24 14:25:19 +01:00
|
|
|
&null_local_buffer, &anonymous_vs_type, &null_shader_variable, anonymous_name};
|
2010-03-27 10:36:26 +01:00
|
|
|
static struct d3d10_effect_variable anonymous_ps = {(const ID3D10EffectVariableVtbl *)&d3d10_effect_shader_variable_vtbl,
|
2010-01-24 14:25:19 +01:00
|
|
|
&null_local_buffer, &anonymous_ps_type, &null_shader_variable, anonymous_name};
|
2010-03-27 10:36:26 +01:00
|
|
|
static struct d3d10_effect_variable anonymous_gs = {(const ID3D10EffectVariableVtbl *)&d3d10_effect_shader_variable_vtbl,
|
2010-01-24 14:25:19 +01:00
|
|
|
&null_local_buffer, &anonymous_gs_type, &null_shader_variable, anonymous_name};
|
|
|
|
|
2009-09-30 11:42:14 +02:00
|
|
|
static struct d3d10_effect_type *get_fx10_type(struct d3d10_effect *effect, const char *data, DWORD offset);
|
|
|
|
|
2009-09-10 21:00:22 +02:00
|
|
|
static BOOL copy_name(const char *ptr, char **name)
|
2009-07-14 11:17:39 +02:00
|
|
|
{
|
|
|
|
size_t name_len;
|
|
|
|
|
2009-09-30 11:42:14 +02:00
|
|
|
if (!ptr) return TRUE;
|
|
|
|
|
2009-07-14 11:17:39 +02:00
|
|
|
name_len = strlen(ptr) + 1;
|
2009-09-30 11:42:14 +02:00
|
|
|
if (name_len == 1)
|
2009-09-10 21:00:22 +02:00
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*name = HeapAlloc(GetProcessHeap(), 0, name_len);
|
|
|
|
if (!*name)
|
2009-07-14 11:17:39 +02:00
|
|
|
{
|
|
|
|
ERR("Failed to allocate name memory.\n");
|
2009-09-10 21:00:22 +02:00
|
|
|
return FALSE;
|
2009-07-14 11:17:39 +02:00
|
|
|
}
|
|
|
|
|
2009-09-10 21:00:22 +02:00
|
|
|
memcpy(*name, ptr, name_len);
|
2009-07-14 11:17:39 +02:00
|
|
|
|
2009-09-10 21:00:22 +02:00
|
|
|
return TRUE;
|
2009-07-14 11:17:39 +02:00
|
|
|
}
|
|
|
|
|
2010-04-07 18:34:24 +02:00
|
|
|
static HRESULT shader_parse_signature(const char *data, DWORD data_size, struct d3d10_effect_shader_signature *s)
|
|
|
|
{
|
|
|
|
D3D10_SIGNATURE_PARAMETER_DESC *e;
|
|
|
|
const char *ptr = data;
|
|
|
|
unsigned int i;
|
|
|
|
DWORD count;
|
|
|
|
|
|
|
|
read_dword(&ptr, &count);
|
|
|
|
TRACE("%u elements\n", count);
|
|
|
|
|
|
|
|
skip_dword_unknown(&ptr, 1);
|
|
|
|
|
|
|
|
e = HeapAlloc(GetProcessHeap(), 0, count * sizeof(*e));
|
|
|
|
if (!e)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate signature memory.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < count; ++i)
|
|
|
|
{
|
|
|
|
UINT name_offset;
|
|
|
|
UINT mask;
|
|
|
|
|
|
|
|
read_dword(&ptr, &name_offset);
|
|
|
|
e[i].SemanticName = data + name_offset;
|
|
|
|
read_dword(&ptr, &e[i].SemanticIndex);
|
|
|
|
read_dword(&ptr, &e[i].SystemValueType);
|
|
|
|
read_dword(&ptr, &e[i].ComponentType);
|
|
|
|
read_dword(&ptr, &e[i].Register);
|
|
|
|
read_dword(&ptr, &mask);
|
|
|
|
|
|
|
|
e[i].ReadWriteMask = mask >> 8;
|
|
|
|
e[i].Mask = mask & 0xff;
|
|
|
|
|
|
|
|
TRACE("semantic: %s, semantic idx: %u, sysval_semantic %#x, "
|
|
|
|
"type %u, register idx: %u, use_mask %#x, input_mask %#x\n",
|
|
|
|
debugstr_a(e[i].SemanticName), e[i].SemanticIndex, e[i].SystemValueType,
|
|
|
|
e[i].ComponentType, e[i].Register, e[i].Mask, e[i].ReadWriteMask);
|
|
|
|
}
|
|
|
|
|
|
|
|
s->elements = e;
|
|
|
|
s->element_count = count;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void shader_free_signature(struct d3d10_effect_shader_signature *s)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, s->signature);
|
|
|
|
HeapFree(GetProcessHeap(), 0, s->elements);
|
|
|
|
}
|
|
|
|
|
2009-03-03 09:03:46 +01:00
|
|
|
static HRESULT shader_chunk_handler(const char *data, DWORD data_size, DWORD tag, void *ctx)
|
2009-02-27 09:29:48 +01:00
|
|
|
{
|
2009-03-06 08:43:48 +01:00
|
|
|
struct d3d10_effect_shader_variable *s = ctx;
|
2010-04-07 18:34:24 +02:00
|
|
|
HRESULT hr;
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-09-08 16:38:02 +02:00
|
|
|
TRACE("tag: %s.\n", debugstr_an((const char *)&tag, 4));
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-03-03 09:03:46 +01:00
|
|
|
TRACE("chunk size: %#x\n", data_size);
|
2009-02-27 09:29:48 +01:00
|
|
|
|
|
|
|
switch(tag)
|
|
|
|
{
|
2009-03-03 09:03:46 +01:00
|
|
|
case TAG_ISGN:
|
2010-04-07 18:34:36 +02:00
|
|
|
case TAG_OSGN:
|
2009-03-03 09:03:46 +01:00
|
|
|
{
|
|
|
|
/* 32 (DXBC header) + 1 * 4 (chunk index) + 2 * 4 (chunk header) + data_size (chunk data) */
|
|
|
|
UINT size = 44 + data_size;
|
2010-04-07 18:34:36 +02:00
|
|
|
struct d3d10_effect_shader_signature *sig;
|
2009-03-03 09:03:46 +01:00
|
|
|
char *ptr;
|
|
|
|
|
2010-04-07 18:34:36 +02:00
|
|
|
if (tag == TAG_ISGN) sig = &s->input_signature;
|
|
|
|
else sig = &s->output_signature;
|
|
|
|
|
2010-04-07 18:34:16 +02:00
|
|
|
sig->signature = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
|
|
|
|
if (!sig->signature)
|
2009-03-03 09:03:46 +01:00
|
|
|
{
|
|
|
|
ERR("Failed to allocate input signature data\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
2010-04-07 18:34:16 +02:00
|
|
|
sig->signature_size = size;
|
2009-03-03 09:03:46 +01:00
|
|
|
|
2010-04-07 18:34:16 +02:00
|
|
|
ptr = sig->signature;
|
2009-03-03 09:03:46 +01:00
|
|
|
|
|
|
|
write_dword(&ptr, TAG_DXBC);
|
|
|
|
|
|
|
|
/* signature(?) */
|
|
|
|
write_dword_unknown(&ptr, 0);
|
|
|
|
write_dword_unknown(&ptr, 0);
|
|
|
|
write_dword_unknown(&ptr, 0);
|
|
|
|
write_dword_unknown(&ptr, 0);
|
|
|
|
|
|
|
|
/* seems to be always 1 */
|
|
|
|
write_dword_unknown(&ptr, 1);
|
|
|
|
|
|
|
|
/* DXBC size */
|
|
|
|
write_dword(&ptr, size);
|
|
|
|
|
|
|
|
/* chunk count */
|
|
|
|
write_dword(&ptr, 1);
|
|
|
|
|
|
|
|
/* chunk index */
|
2010-04-07 18:34:16 +02:00
|
|
|
write_dword(&ptr, (ptr - sig->signature) + 4);
|
2009-03-03 09:03:46 +01:00
|
|
|
|
|
|
|
/* chunk */
|
2010-04-07 18:34:36 +02:00
|
|
|
write_dword(&ptr, tag);
|
2009-03-03 09:03:46 +01:00
|
|
|
write_dword(&ptr, data_size);
|
|
|
|
memcpy(ptr, data, data_size);
|
2010-04-07 18:34:24 +02:00
|
|
|
|
|
|
|
hr = shader_parse_signature(ptr, data_size, sig);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
ERR("Failed to parse shader, hr %#x\n", hr);
|
|
|
|
shader_free_signature(sig);
|
|
|
|
}
|
|
|
|
|
2009-03-03 09:03:46 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-02-27 09:29:48 +01:00
|
|
|
default:
|
2009-09-08 16:38:02 +02:00
|
|
|
FIXME("Unhandled chunk %s.\n", debugstr_an((const char *)&tag, 4));
|
2009-02-27 09:29:48 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
static HRESULT parse_shader(struct d3d10_effect_variable *v, const char *data)
|
2009-02-27 09:29:48 +01:00
|
|
|
{
|
2010-01-10 19:30:42 +01:00
|
|
|
ID3D10Device *device = v->effect->device;
|
2009-03-06 08:43:48 +01:00
|
|
|
struct d3d10_effect_shader_variable *s;
|
2009-02-27 09:29:48 +01:00
|
|
|
const char *ptr = data;
|
|
|
|
DWORD dxbc_size;
|
2009-03-06 08:43:48 +01:00
|
|
|
HRESULT hr;
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
s = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*s));
|
|
|
|
if (!s)
|
2009-03-03 09:03:46 +01:00
|
|
|
{
|
|
|
|
ERR("Failed to allocate shader variable memory\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
v->data = s;
|
2009-03-06 08:43:48 +01:00
|
|
|
|
2010-04-07 18:34:24 +02:00
|
|
|
if (v->effect->used_shader_current >= v->effect->used_shader_count)
|
|
|
|
{
|
|
|
|
WARN("Invalid shader? Used shader current(%u) >= used shader count(%u)\n", v->effect->used_shader_current, v->effect->used_shader_count);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
v->effect->used_shaders[v->effect->used_shader_current] = v;
|
|
|
|
++v->effect->used_shader_current;
|
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
if (!ptr) return S_OK;
|
2009-03-06 08:43:48 +01:00
|
|
|
|
2009-02-27 09:29:48 +01:00
|
|
|
read_dword(&ptr, &dxbc_size);
|
|
|
|
TRACE("dxbc size: %#x\n", dxbc_size);
|
|
|
|
|
2010-01-24 14:25:42 +01:00
|
|
|
/* We got a shader VertexShader vs = NULL, so it is fine to skip this. */
|
|
|
|
if (!dxbc_size) return S_OK;
|
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
switch (v->type->basetype)
|
2009-03-06 08:43:48 +01:00
|
|
|
{
|
2010-01-10 19:30:42 +01:00
|
|
|
case D3D10_SVT_VERTEXSHADER:
|
2009-03-06 08:43:48 +01:00
|
|
|
hr = ID3D10Device_CreateVertexShader(device, ptr, dxbc_size, &s->shader.vs);
|
|
|
|
if (FAILED(hr)) return hr;
|
|
|
|
break;
|
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
case D3D10_SVT_PIXELSHADER:
|
2009-03-06 08:43:48 +01:00
|
|
|
hr = ID3D10Device_CreatePixelShader(device, ptr, dxbc_size, &s->shader.ps);
|
|
|
|
if (FAILED(hr)) return hr;
|
|
|
|
break;
|
2010-01-10 19:30:42 +01:00
|
|
|
|
|
|
|
case D3D10_SVT_GEOMETRYSHADER:
|
2009-03-06 08:43:48 +01:00
|
|
|
hr = ID3D10Device_CreateGeometryShader(device, ptr, dxbc_size, &s->shader.gs);
|
|
|
|
if (FAILED(hr)) return hr;
|
|
|
|
break;
|
2010-01-10 19:30:42 +01:00
|
|
|
|
|
|
|
default:
|
|
|
|
ERR("This should not happen!\n");
|
|
|
|
return E_FAIL;
|
2009-03-06 08:43:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return parse_dxbc(ptr, dxbc_size, shader_chunk_handler, s);
|
2009-02-27 09:29:48 +01:00
|
|
|
}
|
|
|
|
|
2009-10-25 17:11:42 +01:00
|
|
|
static D3D10_SHADER_VARIABLE_CLASS d3d10_variable_class(DWORD c, BOOL is_column_major)
|
2009-09-09 19:16:40 +02:00
|
|
|
{
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case 1: return D3D10_SVC_SCALAR;
|
|
|
|
case 2: return D3D10_SVC_VECTOR;
|
2009-10-25 17:11:42 +01:00
|
|
|
case 3: if (is_column_major) return D3D10_SVC_MATRIX_COLUMNS;
|
|
|
|
else return D3D10_SVC_MATRIX_ROWS;
|
2009-09-09 19:16:40 +02:00
|
|
|
default:
|
|
|
|
FIXME("Unknown variable class %#x.\n", c);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-25 17:11:34 +01:00
|
|
|
static D3D10_SHADER_VARIABLE_TYPE d3d10_variable_type(DWORD t, BOOL is_object)
|
2009-09-09 19:16:40 +02:00
|
|
|
{
|
2009-10-25 17:11:34 +01:00
|
|
|
if(is_object)
|
2009-09-09 19:16:40 +02:00
|
|
|
{
|
2009-10-25 17:11:34 +01:00
|
|
|
switch (t)
|
|
|
|
{
|
|
|
|
case 1: return D3D10_SVT_STRING;
|
|
|
|
case 2: return D3D10_SVT_BLEND;
|
|
|
|
case 3: return D3D10_SVT_DEPTHSTENCIL;
|
|
|
|
case 4: return D3D10_SVT_RASTERIZER;
|
|
|
|
case 5: return D3D10_SVT_PIXELSHADER;
|
|
|
|
case 6: return D3D10_SVT_VERTEXSHADER;
|
|
|
|
case 7: return D3D10_SVT_GEOMETRYSHADER;
|
|
|
|
|
|
|
|
case 10: return D3D10_SVT_TEXTURE1D;
|
|
|
|
case 11: return D3D10_SVT_TEXTURE1DARRAY;
|
|
|
|
case 12: return D3D10_SVT_TEXTURE2D;
|
|
|
|
case 13: return D3D10_SVT_TEXTURE2DARRAY;
|
|
|
|
case 14: return D3D10_SVT_TEXTURE2DMS;
|
|
|
|
case 15: return D3D10_SVT_TEXTURE2DMSARRAY;
|
|
|
|
case 16: return D3D10_SVT_TEXTURE3D;
|
|
|
|
case 17: return D3D10_SVT_TEXTURECUBE;
|
|
|
|
|
|
|
|
case 19: return D3D10_SVT_RENDERTARGETVIEW;
|
|
|
|
case 20: return D3D10_SVT_DEPTHSTENCILVIEW;
|
|
|
|
case 21: return D3D10_SVT_SAMPLER;
|
|
|
|
default:
|
|
|
|
FIXME("Unknown variable type %#x.\n", t);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (t)
|
|
|
|
{
|
|
|
|
case 1: return D3D10_SVT_FLOAT;
|
|
|
|
case 2: return D3D10_SVT_INT;
|
|
|
|
case 3: return D3D10_SVT_UINT;
|
|
|
|
case 4: return D3D10_SVT_BOOL;
|
|
|
|
default:
|
|
|
|
FIXME("Unknown variable type %#x.\n", t);
|
|
|
|
return 0;
|
|
|
|
}
|
2009-09-09 19:16:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT parse_fx10_type(struct d3d10_effect_type *t, const char *ptr, const char *data)
|
|
|
|
{
|
|
|
|
DWORD unknown0;
|
|
|
|
DWORD offset;
|
2009-10-25 17:11:46 +01:00
|
|
|
DWORD typeinfo;
|
|
|
|
unsigned int i;
|
2009-09-09 19:16:40 +02:00
|
|
|
|
|
|
|
read_dword(&ptr, &offset);
|
|
|
|
TRACE("Type name at offset %#x.\n", offset);
|
|
|
|
|
2009-09-10 21:00:22 +02:00
|
|
|
if (!copy_name(data + offset, &t->name))
|
2009-09-09 19:16:40 +02:00
|
|
|
{
|
|
|
|
ERR("Failed to copy name.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
TRACE("Type name: %s.\n", debugstr_a(t->name));
|
|
|
|
|
|
|
|
read_dword(&ptr, &unknown0);
|
|
|
|
TRACE("Unknown 0: %u.\n", unknown0);
|
|
|
|
|
|
|
|
read_dword(&ptr, &t->element_count);
|
|
|
|
TRACE("Element count: %u.\n", t->element_count);
|
|
|
|
|
|
|
|
read_dword(&ptr, &t->size_unpacked);
|
|
|
|
TRACE("Unpacked size: %#x.\n", t->size_unpacked);
|
|
|
|
|
|
|
|
read_dword(&ptr, &t->stride);
|
|
|
|
TRACE("Stride: %#x.\n", t->stride);
|
|
|
|
|
|
|
|
read_dword(&ptr, &t->size_packed);
|
|
|
|
TRACE("Packed size %#x.\n", t->size_packed);
|
|
|
|
|
2009-10-25 17:11:46 +01:00
|
|
|
switch (unknown0)
|
2009-09-09 19:16:40 +02:00
|
|
|
{
|
2009-10-25 17:11:46 +01:00
|
|
|
case 1:
|
|
|
|
t->member_count = 0;
|
|
|
|
|
|
|
|
read_dword(&ptr, &typeinfo);
|
|
|
|
t->column_count = (typeinfo & D3D10_FX10_TYPE_COLUMN_MASK) >> D3D10_FX10_TYPE_COLUMN_SHIFT;
|
|
|
|
t->row_count = (typeinfo & D3D10_FX10_TYPE_ROW_MASK) >> D3D10_FX10_TYPE_ROW_SHIFT;
|
|
|
|
t->basetype = d3d10_variable_type((typeinfo & D3D10_FX10_TYPE_BASETYPE_MASK) >> D3D10_FX10_TYPE_BASETYPE_SHIFT, FALSE);
|
|
|
|
t->type_class = d3d10_variable_class((typeinfo & D3D10_FX10_TYPE_CLASS_MASK) >> D3D10_FX10_TYPE_CLASS_SHIFT, typeinfo & D3D10_FX10_TYPE_MATRIX_COLUMN_MAJOR_MASK);
|
|
|
|
|
|
|
|
TRACE("Type description: %#x.\n", typeinfo);
|
|
|
|
TRACE("\tcolumns: %u.\n", t->column_count);
|
|
|
|
TRACE("\trows: %u.\n", t->row_count);
|
|
|
|
TRACE("\tbasetype: %s.\n", debug_d3d10_shader_variable_type(t->basetype));
|
|
|
|
TRACE("\tclass: %s.\n", debug_d3d10_shader_variable_class(t->type_class));
|
|
|
|
TRACE("\tunknown bits: %#x.\n", typeinfo & ~(D3D10_FX10_TYPE_COLUMN_MASK | D3D10_FX10_TYPE_ROW_MASK
|
|
|
|
| D3D10_FX10_TYPE_BASETYPE_MASK | D3D10_FX10_TYPE_CLASS_MASK | D3D10_FX10_TYPE_MATRIX_COLUMN_MAJOR_MASK));
|
|
|
|
break;
|
2009-09-09 19:16:40 +02:00
|
|
|
|
2009-10-25 17:11:46 +01:00
|
|
|
case 2:
|
|
|
|
TRACE("Type is an object.\n");
|
2009-09-09 19:16:40 +02:00
|
|
|
|
2009-10-25 17:11:46 +01:00
|
|
|
t->member_count = 0;
|
|
|
|
t->column_count = 0;
|
|
|
|
t->row_count = 0;
|
|
|
|
t->type_class = D3D10_SVC_OBJECT;
|
2009-09-09 19:16:40 +02:00
|
|
|
|
2009-10-25 17:11:46 +01:00
|
|
|
read_dword(&ptr, &typeinfo);
|
|
|
|
t->basetype = d3d10_variable_type(typeinfo, TRUE);
|
2009-09-09 19:16:40 +02:00
|
|
|
|
2009-10-25 17:11:46 +01:00
|
|
|
TRACE("Type description: %#x.\n", typeinfo);
|
|
|
|
TRACE("\tbasetype: %s.\n", debug_d3d10_shader_variable_type(t->basetype));
|
|
|
|
TRACE("\tclass: %s.\n", debug_d3d10_shader_variable_class(t->type_class));
|
|
|
|
break;
|
2009-09-30 11:42:14 +02:00
|
|
|
|
2009-10-25 17:11:46 +01:00
|
|
|
case 3:
|
|
|
|
TRACE("Type is a structure.\n");
|
2009-09-30 11:42:14 +02:00
|
|
|
|
2009-10-25 17:11:46 +01:00
|
|
|
read_dword(&ptr, &t->member_count);
|
|
|
|
TRACE("Member count: %u.\n", t->member_count);
|
2009-09-30 11:42:14 +02:00
|
|
|
|
2009-10-25 17:11:46 +01:00
|
|
|
t->column_count = 0;
|
|
|
|
t->row_count = 0;
|
|
|
|
t->basetype = 0;
|
|
|
|
t->type_class = D3D10_SVC_STRUCT;
|
2009-09-30 11:42:14 +02:00
|
|
|
|
2009-10-25 17:11:46 +01:00
|
|
|
t->members = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, t->member_count * sizeof(*t->members));
|
|
|
|
if (!t->members)
|
2009-09-30 11:42:14 +02:00
|
|
|
{
|
2009-10-25 17:11:46 +01:00
|
|
|
ERR("Failed to allocate members memory.\n");
|
2009-09-30 11:42:14 +02:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
2009-09-09 19:16:40 +02:00
|
|
|
|
2009-10-25 17:11:46 +01:00
|
|
|
for (i = 0; i < t->member_count; ++i)
|
2009-09-30 11:42:14 +02:00
|
|
|
{
|
2009-10-25 17:11:46 +01:00
|
|
|
struct d3d10_effect_type_member *typem = &t->members[i];
|
|
|
|
|
|
|
|
read_dword(&ptr, &offset);
|
|
|
|
TRACE("Member name at offset %#x.\n", offset);
|
|
|
|
|
|
|
|
if (!copy_name(data + offset, &typem->name))
|
|
|
|
{
|
|
|
|
ERR("Failed to copy name.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
TRACE("Member name: %s.\n", debugstr_a(typem->name));
|
|
|
|
|
|
|
|
read_dword(&ptr, &offset);
|
|
|
|
TRACE("Member semantic at offset %#x.\n", offset);
|
|
|
|
|
|
|
|
if (!copy_name(data + offset, &typem->semantic))
|
|
|
|
{
|
|
|
|
ERR("Failed to copy semantic.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
TRACE("Member semantic: %s.\n", debugstr_a(typem->semantic));
|
|
|
|
|
|
|
|
read_dword(&ptr, &typem->buffer_offset);
|
|
|
|
TRACE("Member offset in struct: %#x.\n", typem->buffer_offset);
|
|
|
|
|
|
|
|
read_dword(&ptr, &offset);
|
|
|
|
TRACE("Member type info at offset %#x.\n", offset);
|
|
|
|
|
|
|
|
typem->type = get_fx10_type(t->effect, data, offset);
|
|
|
|
if (!typem->type)
|
|
|
|
{
|
|
|
|
ERR("Failed to get variable type.\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
2009-09-30 11:42:14 +02:00
|
|
|
}
|
2009-10-25 17:11:46 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
FIXME("Unhandled case %#x.\n", unknown0);
|
|
|
|
return E_FAIL;
|
2009-09-09 19:16:40 +02:00
|
|
|
}
|
|
|
|
|
2009-10-21 22:59:46 +02:00
|
|
|
if (t->element_count)
|
|
|
|
{
|
|
|
|
TRACE("Elementtype for type at offset: %#x\n", t->id);
|
|
|
|
|
|
|
|
/* allocate elementtype - we need only one, because all elements have the same type */
|
|
|
|
t->elementtype = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*t->elementtype));
|
|
|
|
if (!t->elementtype)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate members memory.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create a copy of the original type with some minor changes */
|
|
|
|
t->elementtype->vtbl = &d3d10_effect_type_vtbl;
|
|
|
|
t->elementtype->effect = t->effect;
|
|
|
|
|
|
|
|
if (!copy_name(t->name, &t->elementtype->name))
|
|
|
|
{
|
|
|
|
ERR("Failed to copy name.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
TRACE("\tType name: %s.\n", debugstr_a(t->elementtype->name));
|
|
|
|
|
|
|
|
t->elementtype->element_count = 0;
|
|
|
|
TRACE("\tElement count: %u.\n", t->elementtype->element_count);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Not sure if this calculation is 100% correct, but a test
|
|
|
|
* show's that these values work.
|
|
|
|
*/
|
|
|
|
t->elementtype->size_unpacked = t->size_packed / t->element_count;
|
|
|
|
TRACE("\tUnpacked size: %#x.\n", t->elementtype->size_unpacked);
|
|
|
|
|
|
|
|
t->elementtype->stride = t->stride;
|
|
|
|
TRACE("\tStride: %#x.\n", t->elementtype->stride);
|
|
|
|
|
|
|
|
t->elementtype->size_packed = t->size_packed / t->element_count;
|
|
|
|
TRACE("\tPacked size: %#x.\n", t->elementtype->size_packed);
|
|
|
|
|
|
|
|
t->elementtype->member_count = t->member_count;
|
|
|
|
TRACE("\tMember count: %u.\n", t->elementtype->member_count);
|
|
|
|
|
|
|
|
t->elementtype->column_count = t->column_count;
|
|
|
|
TRACE("\tColumns: %u.\n", t->elementtype->column_count);
|
|
|
|
|
|
|
|
t->elementtype->row_count = t->row_count;
|
|
|
|
TRACE("\tRows: %u.\n", t->elementtype->row_count);
|
|
|
|
|
|
|
|
t->elementtype->basetype = t->basetype;
|
|
|
|
TRACE("\tBasetype: %s.\n", debug_d3d10_shader_variable_type(t->elementtype->basetype));
|
|
|
|
|
|
|
|
t->elementtype->type_class = t->type_class;
|
|
|
|
TRACE("\tClass: %s.\n", debug_d3d10_shader_variable_class(t->elementtype->type_class));
|
|
|
|
|
|
|
|
t->elementtype->members = t->members;
|
|
|
|
}
|
|
|
|
|
2009-09-09 19:16:40 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct d3d10_effect_type *get_fx10_type(struct d3d10_effect *effect, const char *data, DWORD offset)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_type *type;
|
|
|
|
struct wine_rb_entry *entry;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
entry = wine_rb_get(&effect->types, &offset);
|
|
|
|
if (entry)
|
|
|
|
{
|
|
|
|
TRACE("Returning existing type.\n");
|
|
|
|
return WINE_RB_ENTRY_VALUE(entry, struct d3d10_effect_type, entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
type = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*type));
|
|
|
|
if (!type)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate type memory.\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
type->vtbl = &d3d10_effect_type_vtbl;
|
|
|
|
type->id = offset;
|
2009-09-30 11:42:14 +02:00
|
|
|
type->effect = effect;
|
2009-09-09 19:16:40 +02:00
|
|
|
hr = parse_fx10_type(type, data + offset, data);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
ERR("Failed to parse type info, hr %#x.\n", hr);
|
|
|
|
HeapFree(GetProcessHeap(), 0, type);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wine_rb_put(&effect->types, &offset, &type->entry) == -1)
|
|
|
|
{
|
|
|
|
ERR("Failed to insert type entry.\n");
|
|
|
|
HeapFree(GetProcessHeap(), 0, type);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
2009-09-30 11:42:14 +02:00
|
|
|
static void set_variable_vtbl(struct d3d10_effect_variable *v)
|
|
|
|
{
|
|
|
|
switch (v->type->type_class)
|
|
|
|
{
|
|
|
|
case D3D10_SVC_SCALAR:
|
2010-03-27 10:36:26 +01:00
|
|
|
v->vtbl = (const ID3D10EffectVariableVtbl *)&d3d10_effect_scalar_variable_vtbl;
|
2009-09-30 11:42:14 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_SVC_VECTOR:
|
2010-03-27 10:36:26 +01:00
|
|
|
v->vtbl = (const ID3D10EffectVariableVtbl *)&d3d10_effect_vector_variable_vtbl;
|
2009-09-30 11:42:14 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_SVC_MATRIX_ROWS:
|
|
|
|
case D3D10_SVC_MATRIX_COLUMNS:
|
2010-03-27 10:36:26 +01:00
|
|
|
v->vtbl = (const ID3D10EffectVariableVtbl *)&d3d10_effect_matrix_variable_vtbl;
|
2009-09-30 11:42:14 +02:00
|
|
|
break;
|
2009-10-12 10:10:26 +02:00
|
|
|
|
|
|
|
case D3D10_SVC_STRUCT:
|
|
|
|
v->vtbl = &d3d10_effect_variable_vtbl;
|
|
|
|
break;
|
2009-09-30 11:42:14 +02:00
|
|
|
|
2009-10-26 18:39:19 +01:00
|
|
|
case D3D10_SVC_OBJECT:
|
|
|
|
switch(v->type->basetype)
|
|
|
|
{
|
|
|
|
case D3D10_SVT_STRING:
|
2010-03-27 10:36:26 +01:00
|
|
|
v->vtbl = (const ID3D10EffectVariableVtbl *)&d3d10_effect_string_variable_vtbl;
|
2009-10-26 18:39:19 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_SVT_TEXTURE1D:
|
|
|
|
case D3D10_SVT_TEXTURE1DARRAY:
|
|
|
|
case D3D10_SVT_TEXTURE2D:
|
|
|
|
case D3D10_SVT_TEXTURE2DARRAY:
|
|
|
|
case D3D10_SVT_TEXTURE2DMS:
|
|
|
|
case D3D10_SVT_TEXTURE2DMSARRAY:
|
|
|
|
case D3D10_SVT_TEXTURE3D:
|
|
|
|
case D3D10_SVT_TEXTURECUBE:
|
2010-03-27 10:36:26 +01:00
|
|
|
v->vtbl = (const ID3D10EffectVariableVtbl *)&d3d10_effect_shader_resource_variable_vtbl;
|
2009-10-26 18:39:19 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_SVT_RENDERTARGETVIEW:
|
2010-03-27 10:36:26 +01:00
|
|
|
v->vtbl = (const ID3D10EffectVariableVtbl *)&d3d10_effect_render_target_view_variable_vtbl;
|
2009-10-26 18:39:19 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_SVT_DEPTHSTENCILVIEW:
|
2010-03-27 10:36:26 +01:00
|
|
|
v->vtbl = (const ID3D10EffectVariableVtbl *)&d3d10_effect_depth_stencil_view_variable_vtbl;
|
2009-10-26 18:39:19 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_SVT_DEPTHSTENCIL:
|
2010-03-27 10:36:26 +01:00
|
|
|
v->vtbl = (const ID3D10EffectVariableVtbl *)&d3d10_effect_depth_stencil_variable_vtbl;
|
2009-10-26 18:39:19 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_SVT_VERTEXSHADER:
|
|
|
|
case D3D10_SVT_GEOMETRYSHADER:
|
|
|
|
case D3D10_SVT_PIXELSHADER:
|
2010-03-27 10:36:26 +01:00
|
|
|
v->vtbl = (const ID3D10EffectVariableVtbl *)&d3d10_effect_shader_variable_vtbl;
|
2009-10-26 18:39:19 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_SVT_BLEND:
|
2010-03-27 10:36:26 +01:00
|
|
|
v->vtbl = (const ID3D10EffectVariableVtbl *)&d3d10_effect_blend_variable_vtbl;
|
2009-10-26 18:39:19 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_SVT_RASTERIZER:
|
2010-03-27 10:36:26 +01:00
|
|
|
v->vtbl = (const ID3D10EffectVariableVtbl *)&d3d10_effect_rasterizer_variable_vtbl;
|
2009-10-26 18:39:19 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_SVT_SAMPLER:
|
2010-03-27 10:36:26 +01:00
|
|
|
v->vtbl = (const ID3D10EffectVariableVtbl *)&d3d10_effect_sampler_variable_vtbl;
|
2009-10-26 18:39:19 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
FIXME("Unhandled basetype %s.\n", debug_d3d10_shader_variable_type(v->type->basetype));
|
|
|
|
v->vtbl = &d3d10_effect_variable_vtbl;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2009-09-30 11:42:14 +02:00
|
|
|
default:
|
|
|
|
FIXME("Unhandled type class %s.\n", debug_d3d10_shader_variable_class(v->type->type_class));
|
|
|
|
v->vtbl = &d3d10_effect_variable_vtbl;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT copy_variableinfo_from_type(struct d3d10_effect_variable *v)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
2009-10-21 22:59:46 +02:00
|
|
|
HRESULT hr;
|
2009-09-30 11:42:14 +02:00
|
|
|
|
2009-10-21 22:59:46 +02:00
|
|
|
if (v->type->member_count)
|
2009-09-30 11:42:14 +02:00
|
|
|
{
|
2009-10-21 22:59:46 +02:00
|
|
|
v->members = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, v->type->member_count * sizeof(*v->members));
|
|
|
|
if (!v->members)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate members memory.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < v->type->member_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_variable *var = &v->members[i];
|
|
|
|
struct d3d10_effect_type_member *typem = &v->type->members[i];
|
|
|
|
|
|
|
|
var->buffer = v->buffer;
|
|
|
|
var->effect = v->effect;
|
|
|
|
var->type = typem->type;
|
|
|
|
set_variable_vtbl(var);
|
|
|
|
|
|
|
|
if (!copy_name(typem->name, &var->name))
|
|
|
|
{
|
|
|
|
ERR("Failed to copy name.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
TRACE("Variable name: %s.\n", debugstr_a(var->name));
|
|
|
|
|
|
|
|
if (!copy_name(typem->semantic, &var->semantic))
|
|
|
|
{
|
|
|
|
ERR("Failed to copy name.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
TRACE("Variable semantic: %s.\n", debugstr_a(var->semantic));
|
|
|
|
|
|
|
|
var->buffer_offset = v->buffer_offset + typem->buffer_offset;
|
|
|
|
TRACE("Variable buffer offset: %u.\n", var->buffer_offset);
|
|
|
|
|
|
|
|
hr = copy_variableinfo_from_type(var);
|
|
|
|
if (FAILED(hr)) return hr;
|
|
|
|
}
|
2009-09-30 11:42:14 +02:00
|
|
|
}
|
|
|
|
|
2009-10-21 22:59:46 +02:00
|
|
|
if (v->type->element_count)
|
2009-09-30 11:42:14 +02:00
|
|
|
{
|
2009-10-21 22:59:46 +02:00
|
|
|
unsigned int bufferoffset = v->buffer_offset;
|
2009-09-30 11:42:14 +02:00
|
|
|
|
2009-10-21 22:59:46 +02:00
|
|
|
v->elements = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, v->type->element_count * sizeof(*v->elements));
|
|
|
|
if (!v->elements)
|
2009-09-30 11:42:14 +02:00
|
|
|
{
|
2009-10-21 22:59:46 +02:00
|
|
|
ERR("Failed to allocate elements memory.\n");
|
2009-09-30 11:42:14 +02:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2009-10-21 22:59:46 +02:00
|
|
|
for (i = 0; i < v->type->element_count; ++i)
|
2009-09-30 11:42:14 +02:00
|
|
|
{
|
2009-10-21 22:59:46 +02:00
|
|
|
struct d3d10_effect_variable *var = &v->elements[i];
|
2009-09-30 11:42:14 +02:00
|
|
|
|
2009-10-21 22:59:46 +02:00
|
|
|
var->buffer = v->buffer;
|
|
|
|
var->effect = v->effect;
|
|
|
|
var->type = v->type->elementtype;
|
|
|
|
set_variable_vtbl(var);
|
2009-09-30 11:42:14 +02:00
|
|
|
|
2009-10-21 22:59:46 +02:00
|
|
|
if (!copy_name(v->name, &var->name))
|
|
|
|
{
|
|
|
|
ERR("Failed to copy name.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
TRACE("Variable name: %s.\n", debugstr_a(var->name));
|
|
|
|
|
|
|
|
if (!copy_name(v->semantic, &var->semantic))
|
|
|
|
{
|
|
|
|
ERR("Failed to copy name.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
TRACE("Variable semantic: %s.\n", debugstr_a(var->semantic));
|
|
|
|
|
|
|
|
if (i != 0)
|
|
|
|
{
|
|
|
|
bufferoffset += v->type->stride;
|
|
|
|
}
|
|
|
|
var->buffer_offset = bufferoffset;
|
|
|
|
TRACE("Variable buffer offset: %u.\n", var->buffer_offset);
|
|
|
|
|
|
|
|
hr = copy_variableinfo_from_type(var);
|
|
|
|
if (FAILED(hr)) return hr;
|
|
|
|
}
|
2009-09-30 11:42:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2009-09-09 19:17:01 +02:00
|
|
|
static HRESULT parse_fx10_variable_head(struct d3d10_effect_variable *v, const char **ptr, const char *data)
|
2009-08-20 19:02:11 +02:00
|
|
|
{
|
2009-09-09 19:17:01 +02:00
|
|
|
DWORD offset;
|
|
|
|
|
|
|
|
read_dword(ptr, &offset);
|
|
|
|
TRACE("Variable name at offset %#x.\n", offset);
|
|
|
|
|
2009-09-10 21:00:22 +02:00
|
|
|
if (!copy_name(data + offset, &v->name))
|
2009-09-09 19:17:01 +02:00
|
|
|
{
|
|
|
|
ERR("Failed to copy name.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
TRACE("Variable name: %s.\n", debugstr_a(v->name));
|
|
|
|
|
|
|
|
read_dword(ptr, &offset);
|
|
|
|
TRACE("Variable type info at offset %#x.\n", offset);
|
|
|
|
|
|
|
|
v->type = get_fx10_type(v->effect, data, offset);
|
|
|
|
if (!v->type)
|
|
|
|
{
|
|
|
|
ERR("Failed to get variable type.\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
2009-09-30 11:42:14 +02:00
|
|
|
set_variable_vtbl(v);
|
2009-09-09 19:17:01 +02:00
|
|
|
|
2009-09-30 11:42:14 +02:00
|
|
|
return copy_variableinfo_from_type(v);
|
2009-09-09 19:17:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT parse_fx10_annotation(struct d3d10_effect_variable *a, const char **ptr, const char *data)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
hr = parse_fx10_variable_head(a, ptr, data);
|
|
|
|
if (FAILED(hr)) return hr;
|
|
|
|
|
|
|
|
skip_dword_unknown(ptr, 1);
|
|
|
|
|
2009-10-27 20:14:27 +01:00
|
|
|
/* mark the variable as annotation */
|
|
|
|
a->flag = D3D10_EFFECT_VARIABLE_ANNOTATION;
|
|
|
|
|
2009-09-09 19:17:01 +02:00
|
|
|
return S_OK;
|
2009-08-20 19:02:11 +02:00
|
|
|
}
|
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
static HRESULT parse_fx10_anonymous_shader(struct d3d10_effect *e, struct d3d10_effect_anonymous_shader *s,
|
|
|
|
enum d3d10_effect_object_type otype)
|
2009-02-27 09:29:48 +01:00
|
|
|
{
|
2010-01-10 19:30:42 +01:00
|
|
|
struct d3d10_effect_variable *v = &s->shader;
|
|
|
|
struct d3d10_effect_type *t = &s->type;
|
|
|
|
const char *shader = NULL;
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
switch (otype)
|
|
|
|
{
|
|
|
|
case D3D10_EOT_VERTEXSHADER:
|
|
|
|
shader = "vertexshader";
|
|
|
|
t->basetype = D3D10_SVT_VERTEXSHADER;
|
|
|
|
break;
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
case D3D10_EOT_PIXELSHADER:
|
|
|
|
shader = "pixelshader";
|
|
|
|
t->basetype = D3D10_SVT_PIXELSHADER;
|
|
|
|
break;
|
2009-07-15 12:21:19 +02:00
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
case D3D10_EOT_GEOMETRYSHADER:
|
|
|
|
shader = "geometryshader";
|
|
|
|
t->basetype = D3D10_SVT_GEOMETRYSHADER;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!copy_name(shader, &t->name))
|
|
|
|
{
|
|
|
|
ERR("Failed to copy name.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
TRACE("Type name: %s.\n", debugstr_a(t->name));
|
2009-07-15 12:21:19 +02:00
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
t->type_class = D3D10_SVC_OBJECT;
|
2009-07-15 12:21:19 +02:00
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
t->vtbl = &d3d10_effect_type_vtbl;
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
v->type = t;
|
|
|
|
v->effect = e;
|
|
|
|
set_variable_vtbl(v);
|
|
|
|
|
|
|
|
if (!copy_name("$Anonymous", &v->name))
|
2009-02-27 09:29:48 +01:00
|
|
|
{
|
2010-01-10 19:30:42 +01:00
|
|
|
ERR("Failed to copy semantic.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
2009-03-06 08:43:48 +01:00
|
|
|
}
|
2010-01-10 19:30:42 +01:00
|
|
|
TRACE("Variable name: %s.\n", debugstr_a(v->name));
|
|
|
|
|
|
|
|
if (!copy_name(NULL, &v->semantic))
|
2009-03-06 08:43:48 +01:00
|
|
|
{
|
2010-01-10 19:30:42 +01:00
|
|
|
ERR("Failed to copy semantic.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
2009-02-27 09:29:48 +01:00
|
|
|
}
|
2010-01-10 19:30:42 +01:00
|
|
|
TRACE("Variable semantic: %s.\n", debugstr_a(v->semantic));
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
static HRESULT parse_fx10_object(struct d3d10_effect_object *o, const char **ptr, const char *data)
|
|
|
|
{
|
|
|
|
const char *data_ptr = NULL;
|
2010-01-24 14:25:52 +01:00
|
|
|
DWORD offset;
|
2010-01-10 19:30:42 +01:00
|
|
|
enum d3d10_effect_object_operation operation;
|
|
|
|
HRESULT hr;
|
|
|
|
struct d3d10_effect *effect = o->pass->technique->effect;
|
2010-01-24 14:26:46 +01:00
|
|
|
ID3D10Effect *e = (ID3D10Effect *)effect;
|
2010-01-10 19:30:42 +01:00
|
|
|
|
|
|
|
read_dword(ptr, &o->type);
|
|
|
|
TRACE("Effect object is of type %#x.\n", o->type);
|
|
|
|
|
2010-01-24 14:25:52 +01:00
|
|
|
read_dword(ptr, &o->index);
|
|
|
|
TRACE("Effect object index %#x.\n", o->index);
|
2010-01-10 19:30:42 +01:00
|
|
|
|
|
|
|
read_dword(ptr, &operation);
|
|
|
|
TRACE("Effect object operation %#x.\n", operation);
|
|
|
|
|
|
|
|
read_dword(ptr, &offset);
|
|
|
|
TRACE("Effect object idx is at offset %#x.\n", offset);
|
|
|
|
|
|
|
|
switch(operation)
|
2009-02-27 09:29:48 +01:00
|
|
|
{
|
2010-01-10 19:30:42 +01:00
|
|
|
case D3D10_EOO_VALUE:
|
2010-01-24 14:25:19 +01:00
|
|
|
TRACE("Copy variable values\n");
|
2010-01-10 19:30:42 +01:00
|
|
|
hr = E_FAIL;
|
2010-01-24 14:25:19 +01:00
|
|
|
|
|
|
|
switch (o->type)
|
|
|
|
{
|
|
|
|
case D3D10_EOT_VERTEXSHADER:
|
|
|
|
TRACE("Vertex shader\n");
|
|
|
|
o->data = &anonymous_vs;
|
|
|
|
hr = S_OK;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_EOT_PIXELSHADER:
|
|
|
|
TRACE("Pixel shader\n");
|
|
|
|
o->data = &anonymous_ps;
|
|
|
|
hr = S_OK;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_EOT_GEOMETRYSHADER:
|
|
|
|
TRACE("Geometry shader\n");
|
|
|
|
o->data = &anonymous_gs;
|
|
|
|
hr = S_OK;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
FIXME("Unhandled object type %#x\n", o->type);
|
|
|
|
hr = E_FAIL;
|
|
|
|
break;
|
|
|
|
}
|
2009-02-27 09:29:48 +01:00
|
|
|
break;
|
|
|
|
|
2010-01-24 14:26:46 +01:00
|
|
|
case D3D10_EOO_PARSED_OBJECT:
|
|
|
|
/* This is a local object, we've parsed in parse_fx10_local_object. */
|
|
|
|
TRACE("Shader = %s.\n", data + offset);
|
|
|
|
|
|
|
|
o->data = e->lpVtbl->GetVariableByName(e, data + offset);
|
|
|
|
hr = S_OK;
|
|
|
|
break;
|
|
|
|
|
2010-01-24 14:26:54 +01:00
|
|
|
case D3D10_EOO_PARSED_OBJECT_INDEX:
|
|
|
|
/* This is a local object, we've parsed in parse_fx10_local_object, which has an array index. */
|
|
|
|
data_ptr = data + offset;
|
|
|
|
read_dword(&data_ptr, &offset);
|
|
|
|
read_dword(&data_ptr, &o->index);
|
|
|
|
TRACE("Shader = %s[%u].\n", data + offset, o->index);
|
|
|
|
|
|
|
|
o->data = e->lpVtbl->GetVariableByName(e, data + offset);
|
|
|
|
hr = S_OK;
|
|
|
|
break;
|
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
case D3D10_EOO_ANONYMOUS_SHADER:
|
|
|
|
TRACE("Anonymous shader\n");
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
/* check anonymous_shader_current for validity */
|
|
|
|
if (effect->anonymous_shader_current >= effect->anonymous_shader_count)
|
|
|
|
{
|
|
|
|
ERR("Anonymous shader count is wrong!\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
data_ptr = data + offset;
|
|
|
|
read_dword(&data_ptr, &offset);
|
|
|
|
TRACE("Effect object starts at offset %#x.\n", offset);
|
|
|
|
|
|
|
|
data_ptr = data + offset;
|
|
|
|
|
|
|
|
hr = parse_fx10_anonymous_shader(effect, &effect->anonymous_shaders[effect->anonymous_shader_current], o->type);
|
|
|
|
if (FAILED(hr)) return hr;
|
|
|
|
|
|
|
|
o->data = &effect->anonymous_shaders[effect->anonymous_shader_current].shader;
|
|
|
|
++effect->anonymous_shader_current;
|
|
|
|
|
|
|
|
switch (o->type)
|
|
|
|
{
|
|
|
|
case D3D10_EOT_VERTEXSHADER:
|
|
|
|
TRACE("Vertex shader\n");
|
|
|
|
hr = parse_shader(o->data, data_ptr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_EOT_PIXELSHADER:
|
|
|
|
TRACE("Pixel shader\n");
|
|
|
|
hr = parse_shader(o->data, data_ptr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_EOT_GEOMETRYSHADER:
|
|
|
|
TRACE("Geometry shader\n");
|
|
|
|
hr = parse_shader(o->data, data_ptr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
FIXME("Unhandled object type %#x\n", o->type);
|
|
|
|
hr = E_FAIL;
|
|
|
|
break;
|
|
|
|
}
|
2009-02-27 09:29:48 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
hr = E_FAIL;
|
2010-01-10 19:30:42 +01:00
|
|
|
FIXME("Unhandled operation %#x.\n", operation);
|
2009-02-27 09:29:48 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2009-07-14 11:17:41 +02:00
|
|
|
static HRESULT parse_fx10_pass(struct d3d10_effect_pass *p, const char **ptr, const char *data)
|
2009-02-27 09:29:48 +01:00
|
|
|
{
|
|
|
|
HRESULT hr = S_OK;
|
|
|
|
unsigned int i;
|
2009-07-14 11:17:41 +02:00
|
|
|
DWORD offset;
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-07-14 11:17:41 +02:00
|
|
|
read_dword(ptr, &offset);
|
|
|
|
TRACE("Pass name at offset %#x.\n", offset);
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-09-10 21:00:22 +02:00
|
|
|
if (!copy_name(data + offset, &p->name))
|
2009-02-27 09:29:48 +01:00
|
|
|
{
|
2009-07-14 11:17:41 +02:00
|
|
|
ERR("Failed to copy name.\n");
|
2009-02-27 09:29:48 +01:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
2009-09-08 16:38:02 +02:00
|
|
|
TRACE("Pass name: %s.\n", debugstr_a(p->name));
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-07-15 12:21:18 +02:00
|
|
|
read_dword(ptr, &p->object_count);
|
|
|
|
TRACE("Pass has %u effect objects.\n", p->object_count);
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-08-20 19:02:11 +02:00
|
|
|
read_dword(ptr, &p->annotation_count);
|
2009-09-09 19:17:01 +02:00
|
|
|
TRACE("Pass has %u annotations.\n", p->annotation_count);
|
|
|
|
|
|
|
|
p->annotations = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, p->annotation_count * sizeof(*p->annotations));
|
|
|
|
if (!p->annotations)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate pass annotations memory.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2009-11-01 13:42:32 +01:00
|
|
|
for (i = 0; i < p->annotation_count; ++i)
|
2009-08-20 19:02:11 +02:00
|
|
|
{
|
2009-09-09 19:17:01 +02:00
|
|
|
struct d3d10_effect_variable *a = &p->annotations[i];
|
|
|
|
|
|
|
|
a->effect = p->technique->effect;
|
2009-11-01 13:42:32 +01:00
|
|
|
a->buffer = &null_local_buffer;
|
2009-09-09 19:17:01 +02:00
|
|
|
|
|
|
|
hr = parse_fx10_annotation(a, ptr, data);
|
|
|
|
if (FAILED(hr)) return hr;
|
2009-08-20 19:02:11 +02:00
|
|
|
}
|
2009-07-14 11:17:41 +02:00
|
|
|
|
2009-07-15 12:21:18 +02:00
|
|
|
p->objects = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, p->object_count * sizeof(*p->objects));
|
|
|
|
if (!p->objects)
|
2009-07-14 11:17:41 +02:00
|
|
|
{
|
2009-07-15 12:21:18 +02:00
|
|
|
ERR("Failed to allocate effect objects memory.\n");
|
2009-07-14 11:17:41 +02:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-07-15 12:21:18 +02:00
|
|
|
for (i = 0; i < p->object_count; ++i)
|
2009-02-27 09:29:48 +01:00
|
|
|
{
|
2009-07-15 12:21:18 +02:00
|
|
|
struct d3d10_effect_object *o = &p->objects[i];
|
2009-07-14 11:17:41 +02:00
|
|
|
|
2009-07-15 12:21:18 +02:00
|
|
|
o->pass = p;
|
2009-07-14 11:17:41 +02:00
|
|
|
|
2009-07-15 12:21:19 +02:00
|
|
|
hr = parse_fx10_object(o, ptr, data);
|
2009-07-14 11:17:41 +02:00
|
|
|
if (FAILED(hr)) return hr;
|
2009-02-27 09:29:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2009-07-14 11:17:40 +02:00
|
|
|
static HRESULT parse_fx10_technique(struct d3d10_effect_technique *t, const char **ptr, const char *data)
|
2009-02-27 09:29:48 +01:00
|
|
|
{
|
|
|
|
unsigned int i;
|
2009-07-14 11:17:40 +02:00
|
|
|
DWORD offset;
|
2009-09-09 19:17:01 +02:00
|
|
|
HRESULT hr;
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-07-14 11:17:40 +02:00
|
|
|
read_dword(ptr, &offset);
|
|
|
|
TRACE("Technique name at offset %#x.\n", offset);
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-09-10 21:00:22 +02:00
|
|
|
if (!copy_name(data + offset, &t->name))
|
2009-02-27 09:29:48 +01:00
|
|
|
{
|
2009-07-14 11:17:40 +02:00
|
|
|
ERR("Failed to copy name.\n");
|
2009-02-27 09:29:48 +01:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
2009-09-08 16:38:02 +02:00
|
|
|
TRACE("Technique name: %s.\n", debugstr_a(t->name));
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-07-14 11:17:40 +02:00
|
|
|
read_dword(ptr, &t->pass_count);
|
|
|
|
TRACE("Technique has %u passes\n", t->pass_count);
|
|
|
|
|
2009-08-20 19:02:11 +02:00
|
|
|
read_dword(ptr, &t->annotation_count);
|
2009-09-09 19:17:01 +02:00
|
|
|
TRACE("Technique has %u annotations.\n", t->annotation_count);
|
|
|
|
|
|
|
|
t->annotations = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, t->annotation_count * sizeof(*t->annotations));
|
|
|
|
if (!t->annotations)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate technique annotations memory.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2009-11-01 13:42:32 +01:00
|
|
|
for (i = 0; i < t->annotation_count; ++i)
|
2009-08-20 19:02:11 +02:00
|
|
|
{
|
2009-09-09 19:17:01 +02:00
|
|
|
struct d3d10_effect_variable *a = &t->annotations[i];
|
|
|
|
|
|
|
|
a->effect = t->effect;
|
2009-11-01 13:42:32 +01:00
|
|
|
a->buffer = &null_local_buffer;
|
2009-09-09 19:17:01 +02:00
|
|
|
|
|
|
|
hr = parse_fx10_annotation(a, ptr, data);
|
|
|
|
if (FAILED(hr)) return hr;
|
2009-08-20 19:02:11 +02:00
|
|
|
}
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-07-14 11:17:40 +02:00
|
|
|
t->passes = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, t->pass_count * sizeof(*t->passes));
|
|
|
|
if (!t->passes)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate passes memory\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
2009-02-27 09:29:48 +01:00
|
|
|
|
|
|
|
for (i = 0; i < t->pass_count; ++i)
|
|
|
|
{
|
2009-07-14 11:17:40 +02:00
|
|
|
struct d3d10_effect_pass *p = &t->passes[i];
|
|
|
|
|
|
|
|
p->vtbl = &d3d10_effect_pass_vtbl;
|
|
|
|
p->technique = t;
|
|
|
|
|
2009-07-14 11:17:41 +02:00
|
|
|
hr = parse_fx10_pass(p, ptr, data);
|
2009-07-14 11:17:40 +02:00
|
|
|
if (FAILED(hr)) return hr;
|
2009-02-27 09:29:48 +01:00
|
|
|
}
|
|
|
|
|
2009-07-14 11:17:40 +02:00
|
|
|
return S_OK;
|
2009-02-27 09:29:48 +01:00
|
|
|
}
|
|
|
|
|
2009-07-15 12:21:20 +02:00
|
|
|
static HRESULT parse_fx10_variable(struct d3d10_effect_variable *v, const char **ptr, const char *data)
|
|
|
|
{
|
2009-09-10 21:00:22 +02:00
|
|
|
DWORD offset;
|
2009-08-20 19:02:11 +02:00
|
|
|
unsigned int i;
|
2009-09-09 19:17:01 +02:00
|
|
|
HRESULT hr;
|
2009-07-15 12:21:20 +02:00
|
|
|
|
2009-09-09 19:17:01 +02:00
|
|
|
hr = parse_fx10_variable_head(v, ptr, data);
|
|
|
|
if (FAILED(hr)) return hr;
|
2009-07-15 12:21:20 +02:00
|
|
|
|
2009-09-10 21:00:22 +02:00
|
|
|
read_dword(ptr, &offset);
|
|
|
|
TRACE("Variable semantic at offset %#x.\n", offset);
|
|
|
|
|
|
|
|
if (!copy_name(data + offset, &v->semantic))
|
|
|
|
{
|
|
|
|
ERR("Failed to copy semantic.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
TRACE("Variable semantic: %s.\n", debugstr_a(v->semantic));
|
2009-07-15 12:21:20 +02:00
|
|
|
|
|
|
|
read_dword(ptr, &v->buffer_offset);
|
|
|
|
TRACE("Variable offset in buffer: %#x.\n", v->buffer_offset);
|
|
|
|
|
2009-08-26 22:30:40 +02:00
|
|
|
skip_dword_unknown(ptr, 1);
|
|
|
|
|
|
|
|
read_dword(ptr, &v->flag);
|
|
|
|
TRACE("Variable flag: %#x.\n", v->flag);
|
2009-08-20 19:02:11 +02:00
|
|
|
|
|
|
|
read_dword(ptr, &v->annotation_count);
|
2009-09-09 19:17:01 +02:00
|
|
|
TRACE("Variable has %u annotations.\n", v->annotation_count);
|
|
|
|
|
|
|
|
v->annotations = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, v->annotation_count * sizeof(*v->annotations));
|
|
|
|
if (!v->annotations)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate variable annotations memory.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2009-10-01 11:56:01 +02:00
|
|
|
for (i = 0; i < v->annotation_count; ++i)
|
2009-08-20 19:02:11 +02:00
|
|
|
{
|
2009-09-09 19:17:01 +02:00
|
|
|
struct d3d10_effect_variable *a = &v->annotations[i];
|
|
|
|
|
|
|
|
a->effect = v->effect;
|
2009-11-01 13:42:32 +01:00
|
|
|
a->buffer = &null_local_buffer;
|
2009-09-09 19:17:01 +02:00
|
|
|
|
|
|
|
hr = parse_fx10_annotation(a, ptr, data);
|
|
|
|
if (FAILED(hr)) return hr;
|
2009-08-20 19:02:11 +02:00
|
|
|
}
|
2009-07-15 12:21:20 +02:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2009-10-25 17:11:49 +01:00
|
|
|
static HRESULT parse_fx10_local_variable(struct d3d10_effect_variable *v, const char **ptr, const char *data)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
HRESULT hr;
|
2010-05-05 19:00:44 +02:00
|
|
|
DWORD offset;
|
2009-10-25 17:11:49 +01:00
|
|
|
|
|
|
|
hr = parse_fx10_variable_head(v, ptr, data);
|
|
|
|
if (FAILED(hr)) return hr;
|
|
|
|
|
2010-05-05 19:00:44 +02:00
|
|
|
read_dword(ptr, &offset);
|
|
|
|
TRACE("Variable semantic at offset %#x.\n", offset);
|
|
|
|
|
|
|
|
if (!copy_name(data + offset, &v->semantic))
|
|
|
|
{
|
|
|
|
ERR("Failed to copy semantic.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
TRACE("Variable semantic: %s.\n", debugstr_a(v->semantic));
|
|
|
|
|
|
|
|
skip_dword_unknown(ptr, 1);
|
2009-10-25 17:11:49 +01:00
|
|
|
|
|
|
|
switch (v->type->basetype)
|
|
|
|
{
|
|
|
|
case D3D10_SVT_TEXTURE1D:
|
|
|
|
case D3D10_SVT_TEXTURE1DARRAY:
|
|
|
|
case D3D10_SVT_TEXTURE2D:
|
|
|
|
case D3D10_SVT_TEXTURE2DARRAY:
|
|
|
|
case D3D10_SVT_TEXTURE2DMS:
|
|
|
|
case D3D10_SVT_TEXTURE2DMSARRAY:
|
|
|
|
case D3D10_SVT_TEXTURE3D:
|
|
|
|
case D3D10_SVT_TEXTURECUBE:
|
|
|
|
case D3D10_SVT_RENDERTARGETVIEW:
|
|
|
|
case D3D10_SVT_DEPTHSTENCILVIEW:
|
|
|
|
TRACE("SVT could not have elements.\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_SVT_VERTEXSHADER:
|
|
|
|
case D3D10_SVT_PIXELSHADER:
|
|
|
|
case D3D10_SVT_GEOMETRYSHADER:
|
2010-01-24 14:25:42 +01:00
|
|
|
TRACE("Shader type is %s\n", debug_d3d10_shader_variable_type(v->type->basetype));
|
2009-10-25 17:11:49 +01:00
|
|
|
for (i = 0; i < max(v->type->element_count, 1); ++i)
|
|
|
|
{
|
|
|
|
DWORD shader_offset;
|
2010-01-24 14:25:42 +01:00
|
|
|
struct d3d10_effect_variable *var;
|
|
|
|
|
|
|
|
if (!v->type->element_count)
|
|
|
|
{
|
|
|
|
var = v;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
var = &v->elements[i];
|
|
|
|
}
|
2009-10-25 17:11:49 +01:00
|
|
|
|
|
|
|
read_dword(ptr, &shader_offset);
|
2010-01-24 14:25:42 +01:00
|
|
|
TRACE("Shader offset: %#x.\n", shader_offset);
|
|
|
|
|
|
|
|
hr = parse_shader(var, data + shader_offset);
|
|
|
|
if (FAILED(hr)) return hr;
|
2009-10-25 17:11:49 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_SVT_DEPTHSTENCIL:
|
|
|
|
case D3D10_SVT_BLEND:
|
|
|
|
case D3D10_SVT_RASTERIZER:
|
|
|
|
case D3D10_SVT_SAMPLER:
|
|
|
|
TRACE("SVT is a state.\n");
|
|
|
|
for (i = 0; i < max(v->type->element_count, 1); ++i)
|
|
|
|
{
|
|
|
|
unsigned int j;
|
|
|
|
DWORD object_count;
|
|
|
|
|
|
|
|
read_dword(ptr, &object_count);
|
|
|
|
TRACE("Object count: %#x.\n", object_count);
|
|
|
|
|
|
|
|
for (j = 0; j < object_count; ++j)
|
|
|
|
{
|
|
|
|
skip_dword_unknown(ptr, 4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
FIXME("Unhandled case %s.\n", debug_d3d10_shader_variable_type(v->type->basetype));
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
read_dword(ptr, &v->annotation_count);
|
|
|
|
TRACE("Variable has %u annotations.\n", v->annotation_count);
|
|
|
|
|
|
|
|
v->annotations = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, v->annotation_count * sizeof(*v->annotations));
|
|
|
|
if (!v->annotations)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate variable annotations memory.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < v->annotation_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_variable *a = &v->annotations[i];
|
|
|
|
|
|
|
|
a->effect = v->effect;
|
2009-11-01 13:42:32 +01:00
|
|
|
a->buffer = &null_local_buffer;
|
2009-10-25 17:11:49 +01:00
|
|
|
|
|
|
|
hr = parse_fx10_annotation(a, ptr, data);
|
|
|
|
if (FAILED(hr)) return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2009-09-30 11:40:38 +02:00
|
|
|
static HRESULT parse_fx10_local_buffer(struct d3d10_effect_variable *l, const char **ptr, const char *data)
|
2009-07-14 11:17:38 +02:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
DWORD offset;
|
2009-09-30 11:39:56 +02:00
|
|
|
D3D10_CBUFFER_TYPE d3d10_cbuffer_type;
|
2009-09-09 19:17:01 +02:00
|
|
|
HRESULT hr;
|
2009-11-01 13:42:22 +01:00
|
|
|
unsigned int stride = 0;
|
2009-07-14 11:17:38 +02:00
|
|
|
|
2009-09-30 11:42:14 +02:00
|
|
|
/* Generate our own type, it isn't in the fx blob. */
|
2009-09-30 11:39:56 +02:00
|
|
|
l->type = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*l->type));
|
|
|
|
if (!l->type)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate local buffer type memory.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
l->type->vtbl = &d3d10_effect_type_vtbl;
|
|
|
|
l->type->type_class = D3D10_SVC_OBJECT;
|
2009-09-30 11:42:14 +02:00
|
|
|
l->type->effect = l->effect;
|
2009-09-30 11:39:56 +02:00
|
|
|
|
2009-07-14 11:17:38 +02:00
|
|
|
read_dword(ptr, &offset);
|
|
|
|
TRACE("Local buffer name at offset %#x.\n", offset);
|
|
|
|
|
2009-09-10 21:00:22 +02:00
|
|
|
if (!copy_name(data + offset, &l->name))
|
2009-07-14 11:17:39 +02:00
|
|
|
{
|
|
|
|
ERR("Failed to copy name.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
2009-09-08 16:38:02 +02:00
|
|
|
TRACE("Local buffer name: %s.\n", debugstr_a(l->name));
|
2009-07-14 11:17:39 +02:00
|
|
|
|
2009-07-14 11:17:38 +02:00
|
|
|
read_dword(ptr, &l->data_size);
|
|
|
|
TRACE("Local buffer data size: %#x.\n", l->data_size);
|
|
|
|
|
2009-09-30 11:39:56 +02:00
|
|
|
read_dword(ptr, &d3d10_cbuffer_type);
|
|
|
|
TRACE("Local buffer type: %#x.\n", d3d10_cbuffer_type);
|
2009-07-14 11:17:38 +02:00
|
|
|
|
2009-09-30 11:39:56 +02:00
|
|
|
switch(d3d10_cbuffer_type)
|
|
|
|
{
|
|
|
|
case D3D10_CT_CBUFFER:
|
|
|
|
l->type->basetype = D3D10_SVT_CBUFFER;
|
|
|
|
if (!copy_name("cbuffer", &l->type->name))
|
|
|
|
{
|
|
|
|
ERR("Failed to copy name.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case D3D10_CT_TBUFFER:
|
|
|
|
l->type->basetype = D3D10_SVT_TBUFFER;
|
|
|
|
if (!copy_name("tbuffer", &l->type->name))
|
|
|
|
{
|
|
|
|
ERR("Failed to copy name.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
ERR("Unexpected D3D10_CBUFFER_TYPE %#x!\n", d3d10_cbuffer_type);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
read_dword(ptr, &l->type->member_count);
|
|
|
|
TRACE("Local buffer member count: %#x.\n", l->type->member_count);
|
2009-07-14 11:17:38 +02:00
|
|
|
|
2009-08-20 19:02:11 +02:00
|
|
|
skip_dword_unknown(ptr, 1);
|
|
|
|
|
|
|
|
read_dword(ptr, &l->annotation_count);
|
2009-09-09 19:17:01 +02:00
|
|
|
TRACE("Local buffer has %u annotations.\n", l->annotation_count);
|
|
|
|
|
|
|
|
l->annotations = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, l->annotation_count * sizeof(*l->annotations));
|
|
|
|
if (!l->annotations)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate local buffer annotations memory.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2009-11-01 13:42:32 +01:00
|
|
|
for (i = 0; i < l->annotation_count; ++i)
|
2009-08-20 19:02:11 +02:00
|
|
|
{
|
2009-09-09 19:17:01 +02:00
|
|
|
struct d3d10_effect_variable *a = &l->annotations[i];
|
|
|
|
|
|
|
|
a->effect = l->effect;
|
2009-11-01 13:42:32 +01:00
|
|
|
a->buffer = &null_local_buffer;
|
2009-09-09 19:17:01 +02:00
|
|
|
|
|
|
|
hr = parse_fx10_annotation(a, ptr, data);
|
|
|
|
if (FAILED(hr)) return hr;
|
2009-08-20 19:02:11 +02:00
|
|
|
}
|
2009-07-14 11:17:38 +02:00
|
|
|
|
2009-09-30 11:39:56 +02:00
|
|
|
l->members = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, l->type->member_count * sizeof(*l->members));
|
2009-09-30 11:39:13 +02:00
|
|
|
if (!l->members)
|
2009-07-15 12:21:20 +02:00
|
|
|
{
|
2009-09-30 11:39:13 +02:00
|
|
|
ERR("Failed to allocate members memory.\n");
|
2009-07-15 12:21:20 +02:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2009-09-30 11:42:14 +02:00
|
|
|
l->type->members = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, l->type->member_count * sizeof(*l->type->members));
|
|
|
|
if (!l->type->members)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate type members memory.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2009-09-30 11:39:56 +02:00
|
|
|
for (i = 0; i < l->type->member_count; ++i)
|
2009-07-14 11:17:38 +02:00
|
|
|
{
|
2009-09-30 11:39:13 +02:00
|
|
|
struct d3d10_effect_variable *v = &l->members[i];
|
2009-09-30 11:42:14 +02:00
|
|
|
struct d3d10_effect_type_member *typem = &l->type->members[i];
|
2009-07-15 12:21:20 +02:00
|
|
|
|
2009-09-08 16:38:00 +02:00
|
|
|
v->buffer = l;
|
2009-09-09 19:17:01 +02:00
|
|
|
v->effect = l->effect;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-07-15 12:21:20 +02:00
|
|
|
hr = parse_fx10_variable(v, ptr, data);
|
|
|
|
if (FAILED(hr)) return hr;
|
2009-09-30 11:39:56 +02:00
|
|
|
|
2009-09-30 11:42:14 +02:00
|
|
|
/*
|
|
|
|
* Copy the values from the variable type to the constant buffers type
|
|
|
|
* members structure, because it is our own generated type.
|
|
|
|
*/
|
|
|
|
typem->type = v->type;
|
|
|
|
|
|
|
|
if (!copy_name(v->name, &typem->name))
|
|
|
|
{
|
|
|
|
ERR("Failed to copy name.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
TRACE("Variable name: %s.\n", debugstr_a(typem->name));
|
|
|
|
|
|
|
|
if (!copy_name(v->semantic, &typem->semantic))
|
|
|
|
{
|
|
|
|
ERR("Failed to copy name.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
TRACE("Variable semantic: %s.\n", debugstr_a(typem->semantic));
|
|
|
|
|
|
|
|
typem->buffer_offset = v->buffer_offset;
|
|
|
|
TRACE("Variable buffer offset: %u.\n", typem->buffer_offset);
|
|
|
|
|
2009-09-30 11:39:56 +02:00
|
|
|
l->type->size_packed += v->type->size_packed;
|
2009-11-01 13:42:22 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* For the complete constantbuffer the size_unpacked = stride,
|
|
|
|
* the stride is calculated like this:
|
|
|
|
*
|
|
|
|
* 1) if the constant buffer variables are packed with packoffset
|
|
|
|
* - stride = the highest used constant
|
|
|
|
* - the complete stride has to be a multiple of 0x10
|
|
|
|
*
|
|
|
|
* 2) if the constant buffer variables are NOT packed with packoffset
|
|
|
|
* - sum of unpacked size for all variables which fit in a 0x10 part
|
|
|
|
* - if the size exceeds a 0x10 part, the rest of the old part is skipped
|
|
|
|
* and a new part is started
|
|
|
|
* - if the variable is a struct it is always used a new part
|
|
|
|
* - the complete stride has to be a multiple of 0x10
|
|
|
|
*
|
|
|
|
* e.g.:
|
|
|
|
* 0x4, 0x4, 0x4, 0x8, 0x4, 0x14, 0x4
|
|
|
|
* part 0x10 0x10 0x20 -> 0x40
|
|
|
|
*/
|
|
|
|
if (v->flag & D3D10_EFFECT_VARIABLE_EXPLICIT_BIND_POINT)
|
|
|
|
{
|
|
|
|
if ((v->type->size_unpacked + v->buffer_offset) > stride)
|
|
|
|
{
|
|
|
|
stride = v->type->size_unpacked + v->buffer_offset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (v->type->type_class == D3D10_SVC_STRUCT)
|
|
|
|
{
|
|
|
|
stride = (stride + 0xf) & ~0xf;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ((stride & 0xf) + v->type->size_unpacked) > 0x10)
|
|
|
|
{
|
|
|
|
stride = (stride + 0xf) & ~0xf;
|
|
|
|
}
|
|
|
|
|
|
|
|
stride += v->type->size_unpacked;
|
|
|
|
}
|
2009-07-14 11:17:38 +02:00
|
|
|
}
|
2009-11-01 13:42:22 +01:00
|
|
|
l->type->stride = l->type->size_unpacked = (stride + 0xf) & ~0xf;
|
2009-09-30 11:39:56 +02:00
|
|
|
|
|
|
|
TRACE("Constant buffer:\n");
|
|
|
|
TRACE("\tType name: %s.\n", debugstr_a(l->type->name));
|
|
|
|
TRACE("\tElement count: %u.\n", l->type->element_count);
|
|
|
|
TRACE("\tMember count: %u.\n", l->type->member_count);
|
|
|
|
TRACE("\tUnpacked size: %#x.\n", l->type->size_unpacked);
|
|
|
|
TRACE("\tStride: %#x.\n", l->type->stride);
|
|
|
|
TRACE("\tPacked size %#x.\n", l->type->size_packed);
|
|
|
|
TRACE("\tBasetype: %s.\n", debug_d3d10_shader_variable_type(l->type->basetype));
|
|
|
|
TRACE("\tTypeclass: %s.\n", debug_d3d10_shader_variable_class(l->type->type_class));
|
2009-07-14 11:17:38 +02:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2009-09-08 16:38:00 +02:00
|
|
|
static int d3d10_effect_type_compare(const void *key, const struct wine_rb_entry *entry)
|
|
|
|
{
|
|
|
|
const struct d3d10_effect_type *t = WINE_RB_ENTRY_VALUE(entry, const struct d3d10_effect_type, entry);
|
|
|
|
const DWORD *id = key;
|
|
|
|
|
|
|
|
return *id - t->id;
|
|
|
|
}
|
|
|
|
|
2009-09-30 11:42:14 +02:00
|
|
|
static void d3d10_effect_type_member_destroy(struct d3d10_effect_type_member *typem)
|
|
|
|
{
|
|
|
|
TRACE("effect type member %p.\n", typem);
|
|
|
|
|
|
|
|
/* Do not release typem->type, it will be covered by d3d10_effect_type_destroy(). */
|
|
|
|
HeapFree(GetProcessHeap(), 0, typem->semantic);
|
|
|
|
HeapFree(GetProcessHeap(), 0, typem->name);
|
|
|
|
}
|
|
|
|
|
2009-09-08 16:38:00 +02:00
|
|
|
static void d3d10_effect_type_destroy(struct wine_rb_entry *entry, void *context)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_type *t = WINE_RB_ENTRY_VALUE(entry, struct d3d10_effect_type, entry);
|
|
|
|
|
|
|
|
TRACE("effect type %p.\n", t);
|
|
|
|
|
2009-10-21 22:59:46 +02:00
|
|
|
if (t->elementtype)
|
|
|
|
{
|
|
|
|
HeapFree(GetProcessHeap(), 0, t->elementtype->name);
|
|
|
|
HeapFree(GetProcessHeap(), 0, t->elementtype);
|
|
|
|
}
|
|
|
|
|
2009-09-30 11:42:14 +02:00
|
|
|
if (t->members)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < t->member_count; ++i)
|
|
|
|
{
|
|
|
|
d3d10_effect_type_member_destroy(&t->members[i]);
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, t->members);
|
|
|
|
}
|
|
|
|
|
2009-09-08 16:38:01 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, t->name);
|
2009-09-08 16:38:00 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, t);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wine_rb_functions d3d10_effect_type_rb_functions =
|
|
|
|
{
|
|
|
|
d3d10_rb_alloc,
|
|
|
|
d3d10_rb_realloc,
|
|
|
|
d3d10_rb_free,
|
|
|
|
d3d10_effect_type_compare,
|
|
|
|
};
|
|
|
|
|
2009-02-27 09:29:48 +01:00
|
|
|
static HRESULT parse_fx10_body(struct d3d10_effect *e, const char *data, DWORD data_size)
|
|
|
|
{
|
|
|
|
const char *ptr = data + e->index_offset;
|
|
|
|
unsigned int i;
|
2009-07-14 11:17:38 +02:00
|
|
|
HRESULT hr;
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-09-08 16:38:00 +02:00
|
|
|
if (wine_rb_init(&e->types, &d3d10_effect_type_rb_functions) == -1)
|
|
|
|
{
|
|
|
|
ERR("Failed to initialize type rbtree.\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
2009-07-14 11:17:38 +02:00
|
|
|
e->local_buffers = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, e->local_buffer_count * sizeof(*e->local_buffers));
|
|
|
|
if (!e->local_buffers)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate local buffer memory.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-10-25 17:11:49 +01:00
|
|
|
e->local_variables = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, e->local_variable_count * sizeof(*e->local_variables));
|
|
|
|
if (!e->local_variables)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate local variable memory.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
e->anonymous_shaders = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, e->anonymous_shader_count * sizeof(*e->anonymous_shaders));
|
|
|
|
if (!e->anonymous_shaders)
|
|
|
|
{
|
2010-04-07 18:33:39 +02:00
|
|
|
ERR("Failed to allocate anonymous shaders memory\n");
|
2010-01-10 19:30:42 +01:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2010-04-07 18:34:24 +02:00
|
|
|
e->used_shaders = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, e->used_shader_count * sizeof(*e->used_shaders));
|
|
|
|
if (!e->used_shaders)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate used shaders memory\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2009-02-27 09:29:48 +01:00
|
|
|
e->techniques = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, e->technique_count * sizeof(*e->techniques));
|
|
|
|
if (!e->techniques)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate techniques memory\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2009-07-14 11:17:38 +02:00
|
|
|
for (i = 0; i < e->local_buffer_count; ++i)
|
|
|
|
{
|
2009-09-30 11:40:38 +02:00
|
|
|
struct d3d10_effect_variable *l = &e->local_buffers[i];
|
2010-03-27 10:36:26 +01:00
|
|
|
l->vtbl = (const ID3D10EffectVariableVtbl *)&d3d10_effect_constant_buffer_vtbl;
|
2009-09-08 16:38:00 +02:00
|
|
|
l->effect = e;
|
2009-10-21 22:59:55 +02:00
|
|
|
l->buffer = &null_local_buffer;
|
2009-07-14 11:17:38 +02:00
|
|
|
|
2009-07-14 11:17:39 +02:00
|
|
|
hr = parse_fx10_local_buffer(l, &ptr, data);
|
2009-07-14 11:17:38 +02:00
|
|
|
if (FAILED(hr)) return hr;
|
|
|
|
}
|
|
|
|
|
2009-10-25 17:11:49 +01:00
|
|
|
for (i = 0; i < e->local_variable_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_variable *v = &e->local_variables[i];
|
|
|
|
|
|
|
|
v->effect = e;
|
|
|
|
v->vtbl = &d3d10_effect_variable_vtbl;
|
2009-11-01 13:42:32 +01:00
|
|
|
v->buffer = &null_local_buffer;
|
2009-10-25 17:11:49 +01:00
|
|
|
|
|
|
|
hr = parse_fx10_local_variable(v, &ptr, data);
|
|
|
|
if (FAILED(hr)) return hr;
|
|
|
|
}
|
|
|
|
|
2009-02-27 09:29:48 +01:00
|
|
|
for (i = 0; i < e->technique_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_technique *t = &e->techniques[i];
|
2009-03-02 08:52:49 +01:00
|
|
|
|
|
|
|
t->vtbl = &d3d10_effect_technique_vtbl;
|
2009-03-06 08:43:48 +01:00
|
|
|
t->effect = e;
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2009-07-14 11:17:40 +02:00
|
|
|
hr = parse_fx10_technique(t, &ptr, data);
|
2009-07-14 11:17:38 +02:00
|
|
|
if (FAILED(hr)) return hr;
|
2009-02-27 09:29:48 +01:00
|
|
|
}
|
|
|
|
|
2009-07-14 11:17:38 +02:00
|
|
|
return S_OK;
|
2009-02-27 09:29:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT parse_fx10(struct d3d10_effect *e, const char *data, DWORD data_size)
|
|
|
|
{
|
|
|
|
const char *ptr = data;
|
|
|
|
DWORD unknown;
|
|
|
|
|
2009-05-29 23:35:07 +02:00
|
|
|
/* Compiled target version (e.g. fx_4_0=0xfeff1001, fx_4_1=0xfeff1011). */
|
|
|
|
read_dword(&ptr, &e->version);
|
|
|
|
TRACE("Target: %#x\n", e->version);
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-07-14 11:17:38 +02:00
|
|
|
read_dword(&ptr, &e->local_buffer_count);
|
|
|
|
TRACE("Local buffer count: %u.\n", e->local_buffer_count);
|
2009-05-29 23:35:07 +02:00
|
|
|
|
2009-08-26 22:30:32 +02:00
|
|
|
read_dword(&ptr, &e->variable_count);
|
|
|
|
TRACE("Variable count: %u\n", e->variable_count);
|
2009-05-29 23:35:07 +02:00
|
|
|
|
2009-10-25 17:11:49 +01:00
|
|
|
read_dword(&ptr, &e->local_variable_count);
|
|
|
|
TRACE("Object count: %u\n", e->local_variable_count);
|
2009-05-29 23:35:07 +02:00
|
|
|
|
2009-05-30 14:13:19 +02:00
|
|
|
read_dword(&ptr, &e->sharedbuffers_count);
|
|
|
|
TRACE("Sharedbuffers count: %u\n", e->sharedbuffers_count);
|
|
|
|
|
|
|
|
/* Number of variables in shared buffers? */
|
2009-02-27 09:29:48 +01:00
|
|
|
read_dword(&ptr, &unknown);
|
2009-08-26 22:30:32 +02:00
|
|
|
FIXME("Unknown 0: %u\n", unknown);
|
2009-05-30 14:13:19 +02:00
|
|
|
|
|
|
|
read_dword(&ptr, &e->sharedobjects_count);
|
|
|
|
TRACE("Sharedobjects count: %u\n", e->sharedobjects_count);
|
2009-02-27 09:29:48 +01:00
|
|
|
|
|
|
|
read_dword(&ptr, &e->technique_count);
|
|
|
|
TRACE("Technique count: %u\n", e->technique_count);
|
|
|
|
|
|
|
|
read_dword(&ptr, &e->index_offset);
|
|
|
|
TRACE("Index offset: %#x\n", e->index_offset);
|
|
|
|
|
2009-05-29 23:35:07 +02:00
|
|
|
read_dword(&ptr, &unknown);
|
2009-08-26 22:30:32 +02:00
|
|
|
FIXME("Unknown 1: %u\n", unknown);
|
|
|
|
|
|
|
|
read_dword(&ptr, &e->texture_count);
|
|
|
|
TRACE("Texture count: %u\n", e->texture_count);
|
2009-05-29 23:35:07 +02:00
|
|
|
|
|
|
|
read_dword(&ptr, &e->dephstencilstate_count);
|
|
|
|
TRACE("Depthstencilstate count: %u\n", e->dephstencilstate_count);
|
|
|
|
|
|
|
|
read_dword(&ptr, &e->blendstate_count);
|
|
|
|
TRACE("Blendstate count: %u\n", e->blendstate_count);
|
|
|
|
|
|
|
|
read_dword(&ptr, &e->rasterizerstate_count);
|
|
|
|
TRACE("Rasterizerstate count: %u\n", e->rasterizerstate_count);
|
|
|
|
|
|
|
|
read_dword(&ptr, &e->samplerstate_count);
|
|
|
|
TRACE("Samplerstate count: %u\n", e->samplerstate_count);
|
|
|
|
|
2009-08-26 22:30:32 +02:00
|
|
|
read_dword(&ptr, &e->rendertargetview_count);
|
|
|
|
TRACE("Rendertargetview count: %u\n", e->rendertargetview_count);
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-08-26 22:30:32 +02:00
|
|
|
read_dword(&ptr, &e->depthstencilview_count);
|
|
|
|
TRACE("Depthstencilview count: %u\n", e->depthstencilview_count);
|
|
|
|
|
2010-04-07 18:34:24 +02:00
|
|
|
read_dword(&ptr, &e->used_shader_count);
|
|
|
|
TRACE("Used shader count: %u\n", e->used_shader_count);
|
2009-08-26 22:30:32 +02:00
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
read_dword(&ptr, &e->anonymous_shader_count);
|
|
|
|
TRACE("Anonymous shader count: %u\n", e->anonymous_shader_count);
|
2009-02-27 09:29:48 +01:00
|
|
|
|
|
|
|
return parse_fx10_body(e, ptr, data_size - (ptr - data));
|
|
|
|
}
|
|
|
|
|
2009-03-03 09:03:46 +01:00
|
|
|
static HRESULT fx10_chunk_handler(const char *data, DWORD data_size, DWORD tag, void *ctx)
|
2009-02-27 09:29:48 +01:00
|
|
|
{
|
2009-02-27 09:29:48 +01:00
|
|
|
struct d3d10_effect *e = ctx;
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-09-08 16:38:02 +02:00
|
|
|
TRACE("tag: %s.\n", debugstr_an((const char *)&tag, 4));
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-03-03 09:03:46 +01:00
|
|
|
TRACE("chunk size: %#x\n", data_size);
|
2009-02-27 09:29:48 +01:00
|
|
|
|
|
|
|
switch(tag)
|
|
|
|
{
|
2009-02-27 09:29:48 +01:00
|
|
|
case TAG_FX10:
|
2009-03-03 09:03:46 +01:00
|
|
|
return parse_fx10(e, data, data_size);
|
2009-02-27 09:29:48 +01:00
|
|
|
|
2009-02-27 09:29:48 +01:00
|
|
|
default:
|
2009-09-08 16:38:02 +02:00
|
|
|
FIXME("Unhandled chunk %s.\n", debugstr_an((const char *)&tag, 4));
|
2009-03-03 09:03:46 +01:00
|
|
|
return S_OK;
|
2009-02-27 09:29:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT d3d10_effect_parse(struct d3d10_effect *This, const void *data, SIZE_T data_size)
|
|
|
|
{
|
|
|
|
return parse_dxbc(data, data_size, fx10_chunk_handler, This);
|
|
|
|
}
|
|
|
|
|
2009-07-15 12:21:18 +02:00
|
|
|
static HRESULT d3d10_effect_object_apply(struct d3d10_effect_object *o)
|
2009-03-06 08:43:49 +01:00
|
|
|
{
|
2009-07-15 12:21:18 +02:00
|
|
|
ID3D10Device *device = o->pass->technique->effect->device;
|
2010-01-10 19:30:42 +01:00
|
|
|
struct d3d10_effect_variable *v = (struct d3d10_effect_variable*) o->data;
|
2009-03-06 08:43:49 +01:00
|
|
|
|
2009-07-15 12:21:18 +02:00
|
|
|
TRACE("effect object %p, type %#x.\n", o, o->type);
|
2009-03-06 08:43:49 +01:00
|
|
|
|
2009-07-15 12:21:18 +02:00
|
|
|
switch(o->type)
|
2009-03-06 08:43:49 +01:00
|
|
|
{
|
2009-07-15 12:21:18 +02:00
|
|
|
case D3D10_EOT_VERTEXSHADER:
|
2010-01-10 19:30:42 +01:00
|
|
|
ID3D10Device_VSSetShader(device, ((struct d3d10_effect_shader_variable *)v->data)->shader.vs);
|
2009-03-06 08:43:49 +01:00
|
|
|
return S_OK;
|
|
|
|
|
2009-07-15 12:21:18 +02:00
|
|
|
case D3D10_EOT_PIXELSHADER:
|
2010-01-10 19:30:42 +01:00
|
|
|
ID3D10Device_PSSetShader(device, ((struct d3d10_effect_shader_variable *)v->data)->shader.ps);
|
2009-03-06 08:43:49 +01:00
|
|
|
return S_OK;
|
|
|
|
|
2009-07-15 12:21:18 +02:00
|
|
|
case D3D10_EOT_GEOMETRYSHADER:
|
2010-01-10 19:30:42 +01:00
|
|
|
ID3D10Device_GSSetShader(device, ((struct d3d10_effect_shader_variable *)v->data)->shader.gs);
|
2009-03-06 08:43:49 +01:00
|
|
|
return S_OK;
|
|
|
|
|
|
|
|
default:
|
2009-07-15 12:21:18 +02:00
|
|
|
FIXME("Unhandled effect object type %#x.\n", o->type);
|
2009-03-06 08:43:49 +01:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-09 19:17:01 +02:00
|
|
|
static void d3d10_effect_variable_destroy(struct d3d10_effect_variable *v)
|
|
|
|
{
|
2009-09-30 11:42:14 +02:00
|
|
|
unsigned int i;
|
|
|
|
|
2009-09-09 19:17:01 +02:00
|
|
|
TRACE("variable %p.\n", v);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, v->name);
|
2009-09-10 21:00:22 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, v->semantic);
|
2009-09-09 19:17:01 +02:00
|
|
|
if (v->annotations)
|
|
|
|
{
|
|
|
|
for (i = 0; i < v->annotation_count; ++i)
|
|
|
|
{
|
|
|
|
d3d10_effect_variable_destroy(&v->annotations[i]);
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, v->annotations);
|
|
|
|
}
|
2009-09-30 11:42:14 +02:00
|
|
|
|
|
|
|
if (v->members)
|
|
|
|
{
|
|
|
|
for (i = 0; i < v->type->member_count; ++i)
|
|
|
|
{
|
|
|
|
d3d10_effect_variable_destroy(&v->members[i]);
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, v->members);
|
|
|
|
}
|
2009-10-21 22:59:46 +02:00
|
|
|
|
|
|
|
if (v->elements)
|
|
|
|
{
|
|
|
|
for (i = 0; i < v->type->element_count; ++i)
|
|
|
|
{
|
|
|
|
d3d10_effect_variable_destroy(&v->elements[i]);
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, v->elements);
|
|
|
|
}
|
2010-01-10 19:30:42 +01:00
|
|
|
|
|
|
|
if (v->data)
|
|
|
|
{
|
|
|
|
switch(v->type->basetype)
|
|
|
|
{
|
|
|
|
case D3D10_SVT_VERTEXSHADER:
|
|
|
|
case D3D10_SVT_PIXELSHADER:
|
|
|
|
case D3D10_SVT_GEOMETRYSHADER:
|
2010-04-07 18:34:24 +02:00
|
|
|
shader_free_signature(&((struct d3d10_effect_shader_variable *)v->data)->input_signature);
|
2010-04-07 18:34:36 +02:00
|
|
|
shader_free_signature(&((struct d3d10_effect_shader_variable *)v->data)->output_signature);
|
2010-01-10 19:30:42 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, v->data);
|
|
|
|
}
|
2009-09-09 19:17:01 +02:00
|
|
|
}
|
|
|
|
|
2009-02-27 09:29:48 +01:00
|
|
|
static void d3d10_effect_pass_destroy(struct d3d10_effect_pass *p)
|
|
|
|
{
|
2009-09-09 19:17:01 +02:00
|
|
|
unsigned int i;
|
|
|
|
|
2009-03-03 09:03:46 +01:00
|
|
|
TRACE("pass %p\n", p);
|
|
|
|
|
2009-02-27 09:29:48 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, p->name);
|
2010-01-14 21:58:05 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, p->objects);
|
2009-09-09 19:17:01 +02:00
|
|
|
|
|
|
|
if (p->annotations)
|
|
|
|
{
|
|
|
|
for (i = 0; i < p->annotation_count; ++i)
|
|
|
|
{
|
|
|
|
d3d10_effect_variable_destroy(&p->annotations[i]);
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, p->annotations);
|
|
|
|
}
|
2009-02-27 09:29:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void d3d10_effect_technique_destroy(struct d3d10_effect_technique *t)
|
|
|
|
{
|
2009-09-09 19:17:01 +02:00
|
|
|
unsigned int i;
|
|
|
|
|
2009-03-03 09:03:46 +01:00
|
|
|
TRACE("technique %p\n", t);
|
|
|
|
|
2009-02-27 09:29:48 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, t->name);
|
|
|
|
if (t->passes)
|
|
|
|
{
|
|
|
|
for (i = 0; i < t->pass_count; ++i)
|
|
|
|
{
|
|
|
|
d3d10_effect_pass_destroy(&t->passes[i]);
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, t->passes);
|
|
|
|
}
|
2009-07-15 12:21:20 +02:00
|
|
|
|
2009-09-09 19:17:01 +02:00
|
|
|
if (t->annotations)
|
|
|
|
{
|
|
|
|
for (i = 0; i < t->annotation_count; ++i)
|
|
|
|
{
|
|
|
|
d3d10_effect_variable_destroy(&t->annotations[i]);
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, t->annotations);
|
|
|
|
}
|
2009-07-15 12:21:20 +02:00
|
|
|
}
|
|
|
|
|
2009-09-30 11:40:38 +02:00
|
|
|
static void d3d10_effect_local_buffer_destroy(struct d3d10_effect_variable *l)
|
2009-07-14 11:17:39 +02:00
|
|
|
{
|
2009-09-09 19:17:01 +02:00
|
|
|
unsigned int i;
|
|
|
|
|
2009-07-14 11:17:39 +02:00
|
|
|
TRACE("local buffer %p.\n", l);
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, l->name);
|
2009-09-30 11:39:13 +02:00
|
|
|
if (l->members)
|
2009-07-15 12:21:20 +02:00
|
|
|
{
|
2009-09-30 11:39:56 +02:00
|
|
|
for (i = 0; i < l->type->member_count; ++i)
|
2009-07-15 12:21:20 +02:00
|
|
|
{
|
2009-09-30 11:39:13 +02:00
|
|
|
d3d10_effect_variable_destroy(&l->members[i]);
|
2009-07-15 12:21:20 +02:00
|
|
|
}
|
2009-09-30 11:39:13 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, l->members);
|
2009-07-15 12:21:20 +02:00
|
|
|
}
|
2009-09-30 11:42:14 +02:00
|
|
|
|
|
|
|
if (l->type->members)
|
|
|
|
{
|
|
|
|
for (i = 0; i < l->type->member_count; ++i)
|
|
|
|
{
|
|
|
|
/* Do not release l->type->members[i].type, it will be covered by d3d10_effect_type_destroy(). */
|
|
|
|
HeapFree(GetProcessHeap(), 0, l->type->members[i].semantic);
|
|
|
|
HeapFree(GetProcessHeap(), 0, l->type->members[i].name);
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, l->type->members);
|
|
|
|
}
|
2009-09-30 11:39:56 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, l->type->name);
|
|
|
|
HeapFree(GetProcessHeap(), 0, l->type);
|
2009-09-09 19:17:01 +02:00
|
|
|
|
|
|
|
if (l->annotations)
|
|
|
|
{
|
|
|
|
for (i = 0; i < l->annotation_count; ++i)
|
|
|
|
{
|
|
|
|
d3d10_effect_variable_destroy(&l->annotations[i]);
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, l->annotations);
|
|
|
|
}
|
2009-07-14 11:17:39 +02:00
|
|
|
}
|
|
|
|
|
2009-02-26 09:00:01 +01:00
|
|
|
/* IUnknown methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_QueryInterface(ID3D10Effect *iface, REFIID riid, void **object)
|
|
|
|
{
|
|
|
|
TRACE("iface %p, riid %s, object %p\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_ID3D10Effect)
|
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
*object = iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE\n", debugstr_guid(riid));
|
|
|
|
|
|
|
|
*object = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d10_effect_AddRef(ID3D10Effect *iface)
|
|
|
|
{
|
|
|
|
struct d3d10_effect *This = (struct d3d10_effect *)iface;
|
|
|
|
ULONG refcount = InterlockedIncrement(&This->refcount);
|
|
|
|
|
|
|
|
TRACE("%p increasing refcount to %u\n", This, refcount);
|
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG STDMETHODCALLTYPE d3d10_effect_Release(ID3D10Effect *iface)
|
|
|
|
{
|
|
|
|
struct d3d10_effect *This = (struct d3d10_effect *)iface;
|
|
|
|
ULONG refcount = InterlockedDecrement(&This->refcount);
|
|
|
|
|
|
|
|
TRACE("%p decreasing refcount to %u\n", This, refcount);
|
|
|
|
|
|
|
|
if (!refcount)
|
|
|
|
{
|
2009-07-14 11:17:39 +02:00
|
|
|
unsigned int i;
|
|
|
|
|
2009-02-27 09:29:48 +01:00
|
|
|
if (This->techniques)
|
|
|
|
{
|
|
|
|
for (i = 0; i < This->technique_count; ++i)
|
|
|
|
{
|
|
|
|
d3d10_effect_technique_destroy(&This->techniques[i]);
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->techniques);
|
|
|
|
}
|
2009-07-14 11:17:39 +02:00
|
|
|
|
2009-10-25 17:11:49 +01:00
|
|
|
if (This->local_variables)
|
|
|
|
{
|
|
|
|
for (i = 0; i < This->local_variable_count; ++i)
|
|
|
|
{
|
|
|
|
d3d10_effect_variable_destroy(&This->local_variables[i]);
|
|
|
|
}
|
2009-10-27 20:10:19 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This->local_variables);
|
2009-10-25 17:11:49 +01:00
|
|
|
}
|
|
|
|
|
2009-07-14 11:17:39 +02:00
|
|
|
if (This->local_buffers)
|
|
|
|
{
|
|
|
|
for (i = 0; i < This->local_buffer_count; ++i)
|
|
|
|
{
|
|
|
|
d3d10_effect_local_buffer_destroy(&This->local_buffers[i]);
|
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->local_buffers);
|
|
|
|
}
|
|
|
|
|
2010-01-10 19:30:42 +01:00
|
|
|
if (This->anonymous_shaders)
|
|
|
|
{
|
|
|
|
for (i = 0; i < This->anonymous_shader_count; ++i)
|
|
|
|
{
|
|
|
|
d3d10_effect_variable_destroy(&This->anonymous_shaders[i].shader);
|
2010-02-15 20:01:26 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This->anonymous_shaders[i].type.name);
|
2010-01-10 19:30:42 +01:00
|
|
|
}
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->anonymous_shaders);
|
|
|
|
}
|
|
|
|
|
2010-04-07 18:34:24 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This->used_shaders);
|
|
|
|
|
2009-09-08 16:38:00 +02:00
|
|
|
wine_rb_destroy(&This->types, d3d10_effect_type_destroy, NULL);
|
|
|
|
|
2009-03-06 08:43:48 +01:00
|
|
|
ID3D10Device_Release(This->device);
|
2009-02-26 09:00:01 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10Effect methods */
|
|
|
|
|
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_IsValid(ID3D10Effect *iface)
|
|
|
|
{
|
|
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_IsPool(ID3D10Effect *iface)
|
|
|
|
{
|
|
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_GetDevice(ID3D10Effect *iface, ID3D10Device **device)
|
|
|
|
{
|
2009-03-06 08:43:48 +01:00
|
|
|
struct d3d10_effect *This = (struct d3d10_effect *)iface;
|
2009-02-26 09:00:01 +01:00
|
|
|
|
2009-03-06 08:43:48 +01:00
|
|
|
TRACE("iface %p, device %p\n", iface, device);
|
|
|
|
|
|
|
|
ID3D10Device_AddRef(This->device);
|
|
|
|
*device = This->device;
|
|
|
|
|
|
|
|
return S_OK;
|
2009-02-26 09:00:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_GetDesc(ID3D10Effect *iface, D3D10_EFFECT_DESC *desc)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, desc %p stub!\n", iface, desc);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_GetConstantBufferByIndex(ID3D10Effect *iface,
|
|
|
|
UINT index)
|
|
|
|
{
|
2009-08-20 19:06:49 +02:00
|
|
|
struct d3d10_effect *This = (struct d3d10_effect *)iface;
|
2009-09-30 11:40:38 +02:00
|
|
|
struct d3d10_effect_variable *l;
|
2009-02-26 09:00:01 +01:00
|
|
|
|
2009-08-20 19:06:49 +02:00
|
|
|
TRACE("iface %p, index %u\n", iface, index);
|
|
|
|
|
|
|
|
if (index >= This->local_buffer_count)
|
|
|
|
{
|
|
|
|
WARN("Invalid index specified\n");
|
2009-08-29 20:35:37 +02:00
|
|
|
return (ID3D10EffectConstantBuffer *)&null_local_buffer;
|
2009-08-20 19:06:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
l = &This->local_buffers[index];
|
|
|
|
|
2009-09-08 16:38:02 +02:00
|
|
|
TRACE("Returning buffer %p, %s.\n", l, debugstr_a(l->name));
|
2009-08-20 19:06:49 +02:00
|
|
|
|
|
|
|
return (ID3D10EffectConstantBuffer *)l;
|
2009-02-26 09:00:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_GetConstantBufferByName(ID3D10Effect *iface,
|
|
|
|
LPCSTR name)
|
|
|
|
{
|
2009-08-20 19:06:20 +02:00
|
|
|
struct d3d10_effect *This = (struct d3d10_effect *)iface;
|
|
|
|
unsigned int i;
|
|
|
|
|
2009-09-08 16:38:02 +02:00
|
|
|
TRACE("iface %p, name %s.\n", iface, debugstr_a(name));
|
2009-08-20 19:06:20 +02:00
|
|
|
|
|
|
|
for (i = 0; i < This->local_buffer_count; ++i)
|
|
|
|
{
|
2009-09-30 11:40:38 +02:00
|
|
|
struct d3d10_effect_variable *l = &This->local_buffers[i];
|
2009-08-20 19:06:20 +02:00
|
|
|
|
|
|
|
if (!strcmp(l->name, name))
|
|
|
|
{
|
|
|
|
TRACE("Returning buffer %p.\n", l);
|
|
|
|
return (ID3D10EffectConstantBuffer *)l;
|
|
|
|
}
|
|
|
|
}
|
2009-02-26 09:00:01 +01:00
|
|
|
|
2009-08-29 20:35:37 +02:00
|
|
|
WARN("Invalid name specified\n");
|
|
|
|
|
|
|
|
return (ID3D10EffectConstantBuffer *)&null_local_buffer;
|
2009-02-26 09:00:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_GetVariableByIndex(ID3D10Effect *iface, UINT index)
|
|
|
|
{
|
2009-10-26 18:38:13 +01:00
|
|
|
struct d3d10_effect *This = (struct d3d10_effect *)iface;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
TRACE("iface %p, index %u\n", iface, index);
|
|
|
|
|
|
|
|
for (i = 0; i < This->local_buffer_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_variable *l = &This->local_buffers[i];
|
|
|
|
|
|
|
|
if (index < l->type->member_count)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_variable *v = &l->members[index];
|
2009-02-26 09:00:01 +01:00
|
|
|
|
2009-10-26 18:38:13 +01:00
|
|
|
TRACE("Returning variable %p.\n", v);
|
|
|
|
return (ID3D10EffectVariable *)v;
|
|
|
|
}
|
|
|
|
index -= l->type->member_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index < This->local_variable_count)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_variable *v = &This->local_variables[index];
|
|
|
|
|
|
|
|
TRACE("Returning variable %p.\n", v);
|
|
|
|
return (ID3D10EffectVariable *)v;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("Invalid index specified\n");
|
|
|
|
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
2009-02-26 09:00:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_GetVariableByName(ID3D10Effect *iface, LPCSTR name)
|
|
|
|
{
|
2009-07-15 12:21:21 +02:00
|
|
|
struct d3d10_effect *This = (struct d3d10_effect *)iface;
|
|
|
|
unsigned int i;
|
|
|
|
|
2009-09-08 16:38:02 +02:00
|
|
|
TRACE("iface %p, name %s.\n", iface, debugstr_a(name));
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2010-05-05 19:01:59 +02:00
|
|
|
if (!name)
|
|
|
|
{
|
|
|
|
WARN("Invalid name specified\n");
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
|
|
|
}
|
|
|
|
|
2009-07-15 12:21:21 +02:00
|
|
|
for (i = 0; i < This->local_buffer_count; ++i)
|
|
|
|
{
|
2009-09-30 11:40:38 +02:00
|
|
|
struct d3d10_effect_variable *l = &This->local_buffers[i];
|
2009-07-15 12:21:21 +02:00
|
|
|
unsigned int j;
|
|
|
|
|
2009-09-30 11:39:56 +02:00
|
|
|
for (j = 0; j < l->type->member_count; ++j)
|
2009-07-15 12:21:21 +02:00
|
|
|
{
|
2009-09-30 11:39:13 +02:00
|
|
|
struct d3d10_effect_variable *v = &l->members[j];
|
2009-07-15 12:21:21 +02:00
|
|
|
|
|
|
|
if (!strcmp(v->name, name))
|
|
|
|
{
|
|
|
|
TRACE("Returning variable %p.\n", v);
|
|
|
|
return (ID3D10EffectVariable *)v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-02-26 09:00:01 +01:00
|
|
|
|
2009-10-26 18:38:21 +01:00
|
|
|
for (i = 0; i < This->local_variable_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_variable *v = &This->local_variables[i];
|
|
|
|
|
|
|
|
if (!strcmp(v->name, name))
|
|
|
|
{
|
|
|
|
TRACE("Returning variable %p.\n", v);
|
|
|
|
return (ID3D10EffectVariable *)v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-29 20:35:37 +02:00
|
|
|
WARN("Invalid name specified\n");
|
|
|
|
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
2009-02-26 09:00:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_GetVariableBySemantic(ID3D10Effect *iface,
|
|
|
|
LPCSTR semantic)
|
|
|
|
{
|
2010-05-05 19:01:54 +02:00
|
|
|
struct d3d10_effect *This = (struct d3d10_effect *)iface;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
TRACE("iface %p, semantic %s\n", iface, debugstr_a(semantic));
|
|
|
|
|
|
|
|
if (!semantic)
|
|
|
|
{
|
|
|
|
WARN("Invalid semantic specified\n");
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < This->local_buffer_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_variable *l = &This->local_buffers[i];
|
|
|
|
unsigned int j;
|
|
|
|
|
|
|
|
for (j = 0; j < l->type->member_count; ++j)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_variable *v = &l->members[j];
|
|
|
|
|
|
|
|
if (!strcmp(v->semantic, semantic))
|
|
|
|
{
|
|
|
|
TRACE("Returning variable %p.\n", v);
|
|
|
|
return (ID3D10EffectVariable *)v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < This->local_variable_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_variable *v = &This->local_variables[i];
|
2009-02-26 09:00:01 +01:00
|
|
|
|
2010-05-05 19:01:54 +02:00
|
|
|
if (!strcmp(v->semantic, semantic))
|
|
|
|
{
|
|
|
|
TRACE("Returning variable %p.\n", v);
|
|
|
|
return (ID3D10EffectVariable *)v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("Invalid semantic specified\n");
|
|
|
|
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
2009-02-26 09:00:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectTechnique * STDMETHODCALLTYPE d3d10_effect_GetTechniqueByIndex(ID3D10Effect *iface,
|
|
|
|
UINT index)
|
|
|
|
{
|
2009-03-02 08:52:49 +01:00
|
|
|
struct d3d10_effect *This = (struct d3d10_effect *)iface;
|
|
|
|
struct d3d10_effect_technique *t;
|
2009-02-26 09:00:01 +01:00
|
|
|
|
2009-03-02 08:52:49 +01:00
|
|
|
TRACE("iface %p, index %u\n", iface, index);
|
|
|
|
|
|
|
|
if (index >= This->technique_count)
|
|
|
|
{
|
|
|
|
WARN("Invalid index specified\n");
|
2009-08-29 20:35:37 +02:00
|
|
|
return (ID3D10EffectTechnique *)&null_technique;
|
2009-03-02 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
t = &This->techniques[index];
|
|
|
|
|
2009-09-08 16:38:02 +02:00
|
|
|
TRACE("Returning technique %p, %s.\n", t, debugstr_a(t->name));
|
2009-03-02 08:52:49 +01:00
|
|
|
|
|
|
|
return (ID3D10EffectTechnique *)t;
|
2009-02-26 09:00:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectTechnique * STDMETHODCALLTYPE d3d10_effect_GetTechniqueByName(ID3D10Effect *iface,
|
|
|
|
LPCSTR name)
|
|
|
|
{
|
2009-03-02 08:52:49 +01:00
|
|
|
struct d3d10_effect *This = (struct d3d10_effect *)iface;
|
|
|
|
unsigned int i;
|
|
|
|
|
2009-09-08 16:38:02 +02:00
|
|
|
TRACE("iface %p, name %s.\n", iface, debugstr_a(name));
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2010-05-15 22:04:02 +02:00
|
|
|
if (!name)
|
|
|
|
{
|
|
|
|
WARN("Invalid name specified\n");
|
|
|
|
return (ID3D10EffectTechnique *)&null_technique;
|
|
|
|
}
|
|
|
|
|
2009-03-02 08:52:49 +01:00
|
|
|
for (i = 0; i < This->technique_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_technique *t = &This->techniques[i];
|
|
|
|
if (!strcmp(t->name, name))
|
|
|
|
{
|
|
|
|
TRACE("Returning technique %p\n", t);
|
|
|
|
return (ID3D10EffectTechnique *)t;
|
|
|
|
}
|
|
|
|
}
|
2009-02-26 09:00:01 +01:00
|
|
|
|
2009-08-29 20:35:37 +02:00
|
|
|
WARN("Invalid name specified\n");
|
|
|
|
|
|
|
|
return (ID3D10EffectTechnique *)&null_technique;
|
2009-02-26 09:00:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_Optimize(ID3D10Effect *iface)
|
|
|
|
{
|
|
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_IsOptimized(ID3D10Effect *iface)
|
|
|
|
{
|
|
|
|
FIXME("iface %p stub!\n", iface);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct ID3D10EffectVtbl d3d10_effect_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
d3d10_effect_QueryInterface,
|
|
|
|
d3d10_effect_AddRef,
|
|
|
|
d3d10_effect_Release,
|
|
|
|
/* ID3D10Effect methods */
|
|
|
|
d3d10_effect_IsValid,
|
|
|
|
d3d10_effect_IsPool,
|
|
|
|
d3d10_effect_GetDevice,
|
|
|
|
d3d10_effect_GetDesc,
|
|
|
|
d3d10_effect_GetConstantBufferByIndex,
|
|
|
|
d3d10_effect_GetConstantBufferByName,
|
|
|
|
d3d10_effect_GetVariableByIndex,
|
|
|
|
d3d10_effect_GetVariableByName,
|
|
|
|
d3d10_effect_GetVariableBySemantic,
|
|
|
|
d3d10_effect_GetTechniqueByIndex,
|
|
|
|
d3d10_effect_GetTechniqueByName,
|
|
|
|
d3d10_effect_Optimize,
|
|
|
|
d3d10_effect_IsOptimized,
|
|
|
|
};
|
2009-03-02 08:52:49 +01:00
|
|
|
|
|
|
|
/* ID3D10EffectTechnique methods */
|
|
|
|
|
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_technique_IsValid(ID3D10EffectTechnique *iface)
|
|
|
|
{
|
2009-09-07 11:15:14 +02:00
|
|
|
TRACE("iface %p\n", iface);
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2009-09-07 11:15:14 +02:00
|
|
|
return (struct d3d10_effect_technique *)iface != &null_technique;
|
2009-03-02 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_technique_GetDesc(ID3D10EffectTechnique *iface,
|
|
|
|
D3D10_TECHNIQUE_DESC *desc)
|
|
|
|
{
|
2009-03-03 09:03:46 +01:00
|
|
|
struct d3d10_effect_technique *This = (struct d3d10_effect_technique *)iface;
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2009-03-03 09:03:46 +01:00
|
|
|
TRACE("iface %p, desc %p\n", iface, desc);
|
|
|
|
|
2009-08-29 20:36:26 +02:00
|
|
|
if(This == &null_technique)
|
|
|
|
{
|
|
|
|
WARN("Null technique specified\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!desc)
|
|
|
|
{
|
|
|
|
WARN("Invalid argument specified\n");
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
2009-03-03 09:03:46 +01:00
|
|
|
desc->Name = This->name;
|
|
|
|
desc->Passes = This->pass_count;
|
2009-09-09 19:17:01 +02:00
|
|
|
desc->Annotations = This->annotation_count;
|
2009-03-03 09:03:46 +01:00
|
|
|
|
|
|
|
return S_OK;
|
2009-03-02 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_technique_GetAnnotationByIndex(
|
|
|
|
ID3D10EffectTechnique *iface, UINT index)
|
|
|
|
{
|
2009-09-09 19:17:05 +02:00
|
|
|
struct d3d10_effect_technique *This = (struct d3d10_effect_technique *)iface;
|
|
|
|
struct d3d10_effect_variable *a;
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2009-09-09 19:17:05 +02:00
|
|
|
TRACE("iface %p, index %u\n", iface, index);
|
|
|
|
|
|
|
|
if (index >= This->annotation_count)
|
|
|
|
{
|
|
|
|
WARN("Invalid index specified\n");
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
a = &This->annotations[index];
|
|
|
|
|
|
|
|
TRACE("Returning annotation %p, %s\n", a, debugstr_a(a->name));
|
|
|
|
|
|
|
|
return (ID3D10EffectVariable *)a;
|
2009-03-02 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_technique_GetAnnotationByName(
|
|
|
|
ID3D10EffectTechnique *iface, LPCSTR name)
|
|
|
|
{
|
2009-09-09 19:17:26 +02:00
|
|
|
struct d3d10_effect_technique *This = (struct d3d10_effect_technique *)iface;
|
|
|
|
unsigned int i;
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2009-09-09 19:17:26 +02:00
|
|
|
TRACE("iface %p, name %s.\n", iface, debugstr_a(name));
|
|
|
|
|
|
|
|
for (i = 0; i < This->annotation_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_variable *a = &This->annotations[i];
|
|
|
|
if (!strcmp(a->name, name))
|
|
|
|
{
|
|
|
|
TRACE("Returning annotation %p\n", a);
|
|
|
|
return (ID3D10EffectVariable *)a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("Invalid name specified\n");
|
|
|
|
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
2009-03-02 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectPass * STDMETHODCALLTYPE d3d10_effect_technique_GetPassByIndex(ID3D10EffectTechnique *iface,
|
|
|
|
UINT index)
|
|
|
|
{
|
2009-03-02 08:52:49 +01:00
|
|
|
struct d3d10_effect_technique *This = (struct d3d10_effect_technique *)iface;
|
|
|
|
struct d3d10_effect_pass *p;
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2009-03-02 08:52:49 +01:00
|
|
|
TRACE("iface %p, index %u\n", iface, index);
|
|
|
|
|
|
|
|
if (index >= This->pass_count)
|
|
|
|
{
|
|
|
|
WARN("Invalid index specified\n");
|
2009-08-29 20:35:37 +02:00
|
|
|
return (ID3D10EffectPass *)&null_pass;
|
2009-03-02 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
p = &This->passes[index];
|
|
|
|
|
2009-09-08 16:38:02 +02:00
|
|
|
TRACE("Returning pass %p, %s.\n", p, debugstr_a(p->name));
|
2009-03-02 08:52:49 +01:00
|
|
|
|
|
|
|
return (ID3D10EffectPass *)p;
|
2009-03-02 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectPass * STDMETHODCALLTYPE d3d10_effect_technique_GetPassByName(ID3D10EffectTechnique *iface,
|
|
|
|
LPCSTR name)
|
|
|
|
{
|
2009-03-02 08:52:49 +01:00
|
|
|
struct d3d10_effect_technique *This = (struct d3d10_effect_technique *)iface;
|
|
|
|
unsigned int i;
|
|
|
|
|
2009-09-08 16:38:02 +02:00
|
|
|
TRACE("iface %p, name %s.\n", iface, debugstr_a(name));
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2010-05-15 22:04:02 +02:00
|
|
|
/* Do not check for name==NULL, W7/DX10 crashes in that case. */
|
|
|
|
|
2009-03-02 08:52:49 +01:00
|
|
|
for (i = 0; i < This->pass_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_pass *p = &This->passes[i];
|
|
|
|
if (!strcmp(p->name, name))
|
|
|
|
{
|
|
|
|
TRACE("Returning pass %p\n", p);
|
|
|
|
return (ID3D10EffectPass *)p;
|
|
|
|
}
|
|
|
|
}
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2009-08-29 20:35:37 +02:00
|
|
|
WARN("Invalid name specified\n");
|
|
|
|
|
|
|
|
return (ID3D10EffectPass *)&null_pass;
|
2009-03-02 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_technique_ComputeStateBlockMask(ID3D10EffectTechnique *iface,
|
|
|
|
D3D10_STATE_BLOCK_MASK *mask)
|
|
|
|
{
|
|
|
|
FIXME("iface %p,mask %p stub!\n", iface, mask);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D10EffectTechniqueVtbl d3d10_effect_technique_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectTechnique methods */
|
|
|
|
d3d10_effect_technique_IsValid,
|
|
|
|
d3d10_effect_technique_GetDesc,
|
|
|
|
d3d10_effect_technique_GetAnnotationByIndex,
|
|
|
|
d3d10_effect_technique_GetAnnotationByName,
|
|
|
|
d3d10_effect_technique_GetPassByIndex,
|
|
|
|
d3d10_effect_technique_GetPassByName,
|
|
|
|
d3d10_effect_technique_ComputeStateBlockMask,
|
|
|
|
};
|
2009-03-02 08:52:49 +01:00
|
|
|
|
|
|
|
/* ID3D10EffectPass methods */
|
|
|
|
|
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_pass_IsValid(ID3D10EffectPass *iface)
|
|
|
|
{
|
2009-09-07 11:15:14 +02:00
|
|
|
TRACE("iface %p\n", iface);
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2009-09-07 11:15:14 +02:00
|
|
|
return (struct d3d10_effect_pass *)iface != &null_pass;
|
2009-03-02 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_pass_GetDesc(ID3D10EffectPass *iface, D3D10_PASS_DESC *desc)
|
|
|
|
{
|
2009-03-03 09:03:46 +01:00
|
|
|
struct d3d10_effect_pass *This = (struct d3d10_effect_pass *)iface;
|
|
|
|
unsigned int i;
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2009-03-03 09:03:46 +01:00
|
|
|
FIXME("iface %p, desc %p partial stub!\n", iface, desc);
|
|
|
|
|
2009-08-29 20:36:38 +02:00
|
|
|
if(This == &null_pass)
|
|
|
|
{
|
|
|
|
WARN("Null pass specified\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!desc)
|
|
|
|
{
|
|
|
|
WARN("Invalid argument specified\n");
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
2009-03-03 09:03:46 +01:00
|
|
|
memset(desc, 0, sizeof(*desc));
|
|
|
|
desc->Name = This->name;
|
2009-07-15 12:21:18 +02:00
|
|
|
for (i = 0; i < This->object_count; ++i)
|
2009-03-03 09:03:46 +01:00
|
|
|
{
|
2009-07-15 12:21:18 +02:00
|
|
|
struct d3d10_effect_object *o = &This->objects[i];
|
|
|
|
if (o->type == D3D10_EOT_VERTEXSHADER)
|
2009-03-03 09:03:46 +01:00
|
|
|
{
|
2010-01-10 19:30:42 +01:00
|
|
|
struct d3d10_effect_variable *v = o->data;
|
|
|
|
struct d3d10_effect_shader_variable *s = v->data;
|
2010-04-07 18:34:16 +02:00
|
|
|
desc->pIAInputSignature = (BYTE *)s->input_signature.signature;
|
|
|
|
desc->IAInputSignatureSize = s->input_signature.signature_size;
|
2009-03-03 09:03:46 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
2009-03-02 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_pass_GetVertexShaderDesc(ID3D10EffectPass *iface,
|
|
|
|
D3D10_PASS_SHADER_DESC *desc)
|
|
|
|
{
|
2010-01-24 14:25:52 +01:00
|
|
|
struct d3d10_effect_pass *This = (struct d3d10_effect_pass *)iface;
|
|
|
|
unsigned int i;
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2010-01-24 14:25:52 +01:00
|
|
|
TRACE("iface %p, desc %p\n", iface, desc);
|
|
|
|
|
|
|
|
if (This == &null_pass)
|
|
|
|
{
|
|
|
|
WARN("Null pass specified\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!desc)
|
|
|
|
{
|
|
|
|
WARN("Invalid argument specified\n");
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < This->object_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_object *o = &This->objects[i];
|
|
|
|
|
|
|
|
if (o->type == D3D10_EOT_VERTEXSHADER)
|
|
|
|
{
|
|
|
|
desc->pShaderVariable = o->data;
|
|
|
|
desc->ShaderIndex = o->index;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Returning null_shader_variable\n");
|
|
|
|
desc->pShaderVariable = (ID3D10EffectShaderVariable *)&null_shader_variable;
|
|
|
|
desc->ShaderIndex = 0;
|
|
|
|
|
|
|
|
return S_OK;
|
2009-03-02 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_pass_GetGeometryShaderDesc(ID3D10EffectPass *iface,
|
|
|
|
D3D10_PASS_SHADER_DESC *desc)
|
|
|
|
{
|
2010-01-24 14:26:13 +01:00
|
|
|
struct d3d10_effect_pass *This = (struct d3d10_effect_pass *)iface;
|
|
|
|
unsigned int i;
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2010-01-24 14:26:13 +01:00
|
|
|
TRACE("iface %p, desc %p\n", iface, desc);
|
|
|
|
|
|
|
|
if (This == &null_pass)
|
|
|
|
{
|
|
|
|
WARN("Null pass specified\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!desc)
|
|
|
|
{
|
|
|
|
WARN("Invalid argument specified\n");
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < This->object_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_object *o = &This->objects[i];
|
|
|
|
|
|
|
|
if (o->type == D3D10_EOT_GEOMETRYSHADER)
|
|
|
|
{
|
|
|
|
desc->pShaderVariable = o->data;
|
|
|
|
desc->ShaderIndex = o->index;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Returning null_shader_variable\n");
|
|
|
|
desc->pShaderVariable = (ID3D10EffectShaderVariable *)&null_shader_variable;
|
|
|
|
desc->ShaderIndex = 0;
|
|
|
|
|
|
|
|
return S_OK;
|
2009-03-02 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_pass_GetPixelShaderDesc(ID3D10EffectPass *iface,
|
|
|
|
D3D10_PASS_SHADER_DESC *desc)
|
|
|
|
{
|
2010-01-24 14:26:21 +01:00
|
|
|
struct d3d10_effect_pass *This = (struct d3d10_effect_pass *)iface;
|
|
|
|
unsigned int i;
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2010-01-24 14:26:21 +01:00
|
|
|
TRACE("iface %p, desc %p\n", iface, desc);
|
|
|
|
|
|
|
|
if (This == &null_pass)
|
|
|
|
{
|
|
|
|
WARN("Null pass specified\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!desc)
|
|
|
|
{
|
|
|
|
WARN("Invalid argument specified\n");
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < This->object_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_object *o = &This->objects[i];
|
|
|
|
|
|
|
|
if (o->type == D3D10_EOT_PIXELSHADER)
|
|
|
|
{
|
|
|
|
desc->pShaderVariable = o->data;
|
|
|
|
desc->ShaderIndex = o->index;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Returning null_shader_variable\n");
|
|
|
|
desc->pShaderVariable = (ID3D10EffectShaderVariable *)&null_shader_variable;
|
|
|
|
desc->ShaderIndex = 0;
|
|
|
|
|
|
|
|
return S_OK;
|
2009-03-02 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_pass_GetAnnotationByIndex(ID3D10EffectPass *iface,
|
|
|
|
UINT index)
|
|
|
|
{
|
2009-09-09 19:17:14 +02:00
|
|
|
struct d3d10_effect_pass *This = (struct d3d10_effect_pass *)iface;
|
|
|
|
struct d3d10_effect_variable *a;
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2009-09-09 19:17:14 +02:00
|
|
|
TRACE("iface %p, index %u\n", iface, index);
|
|
|
|
|
|
|
|
if (index >= This->annotation_count)
|
|
|
|
{
|
|
|
|
WARN("Invalid index specified\n");
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
a = &This->annotations[index];
|
|
|
|
|
|
|
|
TRACE("Returning annotation %p, %s\n", a, debugstr_a(a->name));
|
|
|
|
|
|
|
|
return (ID3D10EffectVariable *)a;
|
2009-03-02 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_pass_GetAnnotationByName(ID3D10EffectPass *iface,
|
|
|
|
LPCSTR name)
|
|
|
|
{
|
2009-09-09 19:17:30 +02:00
|
|
|
struct d3d10_effect_pass *This = (struct d3d10_effect_pass *)iface;
|
|
|
|
unsigned int i;
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2009-09-09 19:17:30 +02:00
|
|
|
TRACE("iface %p, name %s.\n", iface, debugstr_a(name));
|
|
|
|
|
|
|
|
for (i = 0; i < This->annotation_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_variable *a = &This->annotations[i];
|
|
|
|
if (!strcmp(a->name, name))
|
|
|
|
{
|
|
|
|
TRACE("Returning annotation %p\n", a);
|
|
|
|
return (ID3D10EffectVariable *)a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("Invalid name specified\n");
|
|
|
|
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
2009-03-02 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_pass_Apply(ID3D10EffectPass *iface, UINT flags)
|
|
|
|
{
|
2009-03-06 08:43:49 +01:00
|
|
|
struct d3d10_effect_pass *This = (struct d3d10_effect_pass *)iface;
|
|
|
|
HRESULT hr = S_OK;
|
|
|
|
unsigned int i;
|
2009-03-02 08:52:49 +01:00
|
|
|
|
2009-03-06 08:43:49 +01:00
|
|
|
TRACE("iface %p, flags %#x\n", iface, flags);
|
|
|
|
|
|
|
|
if (flags) FIXME("Ignoring flags (%#x)\n", flags);
|
|
|
|
|
2009-07-15 12:21:18 +02:00
|
|
|
for (i = 0; i < This->object_count; ++i)
|
2009-03-06 08:43:49 +01:00
|
|
|
{
|
2009-07-15 12:21:18 +02:00
|
|
|
hr = d3d10_effect_object_apply(&This->objects[i]);
|
2009-03-06 08:43:49 +01:00
|
|
|
if (FAILED(hr)) break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
2009-03-02 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_pass_ComputeStateBlockMask(ID3D10EffectPass *iface,
|
|
|
|
D3D10_STATE_BLOCK_MASK *mask)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, mask %p stub!\n", iface, mask);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D10EffectPassVtbl d3d10_effect_pass_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectPass methods */
|
|
|
|
d3d10_effect_pass_IsValid,
|
|
|
|
d3d10_effect_pass_GetDesc,
|
|
|
|
d3d10_effect_pass_GetVertexShaderDesc,
|
|
|
|
d3d10_effect_pass_GetGeometryShaderDesc,
|
|
|
|
d3d10_effect_pass_GetPixelShaderDesc,
|
|
|
|
d3d10_effect_pass_GetAnnotationByIndex,
|
|
|
|
d3d10_effect_pass_GetAnnotationByName,
|
|
|
|
d3d10_effect_pass_Apply,
|
|
|
|
d3d10_effect_pass_ComputeStateBlockMask,
|
|
|
|
};
|
2009-07-15 12:21:21 +02:00
|
|
|
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
|
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_variable_IsValid(ID3D10EffectVariable *iface)
|
|
|
|
{
|
2009-09-07 11:15:14 +02:00
|
|
|
TRACE("iface %p\n", iface);
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-09-07 11:15:14 +02:00
|
|
|
return (struct d3d10_effect_variable *)iface != &null_variable;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_variable_GetType(ID3D10EffectVariable *iface)
|
|
|
|
{
|
2009-09-08 16:38:00 +02:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-09-08 16:38:00 +02:00
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
|
|
|
return (ID3D10EffectType *)This->type;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_variable_GetDesc(ID3D10EffectVariable *iface,
|
|
|
|
D3D10_EFFECT_VARIABLE_DESC *desc)
|
|
|
|
{
|
2009-09-10 21:27:11 +02:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-09-10 21:27:11 +02:00
|
|
|
TRACE("iface %p, desc %p\n", iface, desc);
|
|
|
|
|
2010-01-24 14:25:19 +01:00
|
|
|
if (!iface->lpVtbl->IsValid(iface))
|
2009-09-10 21:27:11 +02:00
|
|
|
{
|
|
|
|
WARN("Null variable specified\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
2010-01-24 14:25:19 +01:00
|
|
|
if (!desc)
|
2009-09-10 21:27:11 +02:00
|
|
|
{
|
|
|
|
WARN("Invalid argument specified\n");
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
2010-01-24 14:25:19 +01:00
|
|
|
/* FIXME: This isn't correct. Anonymous shaders let desc->ExplicitBindPoint untouched, but normal shaders set it! */
|
2009-09-10 21:27:11 +02:00
|
|
|
memset(desc, 0, sizeof(*desc));
|
|
|
|
desc->Name = This->name;
|
|
|
|
desc->Semantic = This->semantic;
|
|
|
|
desc->Flags = This->flag;
|
|
|
|
desc->Annotations = This->annotation_count;
|
|
|
|
desc->BufferOffset = This->buffer_offset;
|
|
|
|
|
2010-01-24 14:25:19 +01:00
|
|
|
if (This->flag & D3D10_EFFECT_VARIABLE_EXPLICIT_BIND_POINT)
|
2009-09-10 21:27:11 +02:00
|
|
|
{
|
|
|
|
desc->ExplicitBindPoint = This->buffer_offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_variable_GetAnnotationByIndex(
|
|
|
|
ID3D10EffectVariable *iface, UINT index)
|
|
|
|
{
|
2009-09-09 19:17:17 +02:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
|
|
|
struct d3d10_effect_variable *a;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-09-09 19:17:17 +02:00
|
|
|
TRACE("iface %p, index %u\n", iface, index);
|
|
|
|
|
|
|
|
if (index >= This->annotation_count)
|
|
|
|
{
|
|
|
|
WARN("Invalid index specified\n");
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
a = &This->annotations[index];
|
|
|
|
|
|
|
|
TRACE("Returning annotation %p, %s\n", a, debugstr_a(a->name));
|
|
|
|
|
|
|
|
return (ID3D10EffectVariable *)a;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_variable_GetAnnotationByName(
|
|
|
|
ID3D10EffectVariable *iface, LPCSTR name)
|
|
|
|
{
|
2009-09-09 19:17:33 +02:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
|
|
|
unsigned int i;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-09-09 19:17:33 +02:00
|
|
|
TRACE("iface %p, name %s.\n", iface, debugstr_a(name));
|
|
|
|
|
|
|
|
for (i = 0; i < This->annotation_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_variable *a = &This->annotations[i];
|
|
|
|
if (!strcmp(a->name, name))
|
|
|
|
{
|
|
|
|
TRACE("Returning annotation %p\n", a);
|
|
|
|
return (ID3D10EffectVariable *)a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("Invalid name specified\n");
|
|
|
|
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_variable_GetMemberByIndex(
|
|
|
|
ID3D10EffectVariable *iface, UINT index)
|
|
|
|
{
|
2009-10-01 11:55:29 +02:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
|
|
|
struct d3d10_effect_variable *m;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-10-01 11:55:29 +02:00
|
|
|
TRACE("iface %p, index %u\n", iface, index);
|
|
|
|
|
|
|
|
if (index >= This->type->member_count)
|
|
|
|
{
|
|
|
|
WARN("Invalid index specified\n");
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
m = &This->members[index];
|
|
|
|
|
|
|
|
TRACE("Returning member %p, %s\n", m, debugstr_a(m->name));
|
|
|
|
|
|
|
|
return (ID3D10EffectVariable *)m;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_variable_GetMemberByName(
|
|
|
|
ID3D10EffectVariable *iface, LPCSTR name)
|
|
|
|
{
|
2009-10-01 11:55:33 +02:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
|
|
|
unsigned int i;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-10-01 11:55:33 +02:00
|
|
|
TRACE("iface %p, name %s.\n", iface, debugstr_a(name));
|
|
|
|
|
|
|
|
if (!name)
|
|
|
|
{
|
|
|
|
WARN("Invalid name specified\n");
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < This->type->member_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_variable *m = &This->members[i];
|
|
|
|
|
|
|
|
if (m->name)
|
|
|
|
{
|
|
|
|
if (!strcmp(m->name, name))
|
|
|
|
{
|
|
|
|
TRACE("Returning member %p\n", m);
|
|
|
|
return (ID3D10EffectVariable *)m;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("Invalid name specified\n");
|
|
|
|
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_variable_GetMemberBySemantic(
|
|
|
|
ID3D10EffectVariable *iface, LPCSTR semantic)
|
|
|
|
{
|
2009-10-01 11:55:50 +02:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
|
|
|
unsigned int i;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-10-01 11:55:50 +02:00
|
|
|
TRACE("iface %p, semantic %s.\n", iface, debugstr_a(semantic));
|
|
|
|
|
|
|
|
if (!semantic)
|
|
|
|
{
|
|
|
|
WARN("Invalid semantic specified\n");
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < This->type->member_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_variable *m = &This->members[i];
|
|
|
|
|
|
|
|
if (m->semantic)
|
|
|
|
{
|
|
|
|
if (!strcmp(m->semantic, semantic))
|
|
|
|
{
|
|
|
|
TRACE("Returning member %p\n", m);
|
|
|
|
return (ID3D10EffectVariable *)m;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("Invalid semantic specified\n");
|
|
|
|
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_variable_GetElement(
|
|
|
|
ID3D10EffectVariable *iface, UINT index)
|
|
|
|
{
|
2009-10-21 22:59:46 +02:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
|
|
|
struct d3d10_effect_variable *v;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-10-21 22:59:46 +02:00
|
|
|
TRACE("iface %p, index %u\n", iface, index);
|
|
|
|
|
|
|
|
if (index >= This->type->element_count)
|
|
|
|
{
|
|
|
|
WARN("Invalid index specified\n");
|
|
|
|
return (ID3D10EffectVariable *)&null_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
v = &This->elements[index];
|
|
|
|
|
|
|
|
TRACE("Returning element %p, %s\n", v, debugstr_a(v->name));
|
|
|
|
|
|
|
|
return (ID3D10EffectVariable *)v;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_variable_GetParentConstantBuffer(
|
|
|
|
ID3D10EffectVariable *iface)
|
|
|
|
{
|
2009-10-21 22:59:55 +02:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-10-21 22:59:55 +02:00
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
|
|
|
return (ID3D10EffectConstantBuffer *)This->buffer;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectScalarVariable * STDMETHODCALLTYPE d3d10_effect_variable_AsScalar(
|
|
|
|
ID3D10EffectVariable *iface)
|
|
|
|
{
|
2009-09-09 18:12:41 +02:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-09-09 18:12:41 +02:00
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
2010-03-27 10:36:26 +01:00
|
|
|
if (This->vtbl == (const ID3D10EffectVariableVtbl *)&d3d10_effect_scalar_variable_vtbl)
|
2009-09-09 18:12:41 +02:00
|
|
|
return (ID3D10EffectScalarVariable *)This;
|
|
|
|
|
|
|
|
return (ID3D10EffectScalarVariable *)&null_scalar_variable;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVectorVariable * STDMETHODCALLTYPE d3d10_effect_variable_AsVector(
|
|
|
|
ID3D10EffectVariable *iface)
|
|
|
|
{
|
2009-09-09 18:12:42 +02:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-09-09 18:12:42 +02:00
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
2010-03-27 10:36:26 +01:00
|
|
|
if (This->vtbl == (const ID3D10EffectVariableVtbl *)&d3d10_effect_vector_variable_vtbl)
|
2009-09-09 18:12:42 +02:00
|
|
|
return (ID3D10EffectVectorVariable *)This;
|
|
|
|
|
|
|
|
return (ID3D10EffectVectorVariable *)&null_vector_variable;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectMatrixVariable * STDMETHODCALLTYPE d3d10_effect_variable_AsMatrix(
|
|
|
|
ID3D10EffectVariable *iface)
|
|
|
|
{
|
2009-09-09 18:12:43 +02:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-09-09 18:12:43 +02:00
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
2010-03-27 10:36:26 +01:00
|
|
|
if (This->vtbl == (const ID3D10EffectVariableVtbl *)&d3d10_effect_matrix_variable_vtbl)
|
2009-09-09 18:12:43 +02:00
|
|
|
return (ID3D10EffectMatrixVariable *)This;
|
|
|
|
|
|
|
|
return (ID3D10EffectMatrixVariable *)&null_matrix_variable;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectStringVariable * STDMETHODCALLTYPE d3d10_effect_variable_AsString(
|
|
|
|
ID3D10EffectVariable *iface)
|
|
|
|
{
|
2009-10-27 20:10:31 +01:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-10-27 20:10:31 +01:00
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
2010-03-27 10:36:26 +01:00
|
|
|
if (This->vtbl == (const ID3D10EffectVariableVtbl *)&d3d10_effect_string_variable_vtbl)
|
2009-10-27 20:10:31 +01:00
|
|
|
return (ID3D10EffectStringVariable *)This;
|
|
|
|
|
|
|
|
return (ID3D10EffectStringVariable *)&null_string_variable;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderResourceVariable * STDMETHODCALLTYPE d3d10_effect_variable_AsShaderResource(
|
|
|
|
ID3D10EffectVariable *iface)
|
|
|
|
{
|
2009-10-27 20:10:48 +01:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-10-27 20:10:48 +01:00
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
2010-03-27 10:36:26 +01:00
|
|
|
if (This->vtbl == (const ID3D10EffectVariableVtbl *)&d3d10_effect_shader_resource_variable_vtbl)
|
2009-10-27 20:10:48 +01:00
|
|
|
return (ID3D10EffectShaderResourceVariable *)This;
|
|
|
|
|
|
|
|
return (ID3D10EffectShaderResourceVariable *)&null_shader_resource_variable;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRenderTargetViewVariable * STDMETHODCALLTYPE d3d10_effect_variable_AsRenderTargetView(
|
|
|
|
ID3D10EffectVariable *iface)
|
|
|
|
{
|
2009-10-27 20:11:06 +01:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-10-27 20:11:06 +01:00
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
2010-03-27 10:36:26 +01:00
|
|
|
if (This->vtbl == (const ID3D10EffectVariableVtbl *)&d3d10_effect_render_target_view_variable_vtbl)
|
2009-10-27 20:11:06 +01:00
|
|
|
return (ID3D10EffectRenderTargetViewVariable *)This;
|
|
|
|
|
|
|
|
return (ID3D10EffectRenderTargetViewVariable *)&null_render_target_view_variable;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilViewVariable * STDMETHODCALLTYPE d3d10_effect_variable_AsDepthStencilView(
|
|
|
|
ID3D10EffectVariable *iface)
|
|
|
|
{
|
2009-10-27 20:11:34 +01:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-10-27 20:11:34 +01:00
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
2010-03-27 10:36:26 +01:00
|
|
|
if (This->vtbl == (const ID3D10EffectVariableVtbl *)&d3d10_effect_depth_stencil_view_variable_vtbl)
|
2009-10-27 20:11:34 +01:00
|
|
|
return (ID3D10EffectDepthStencilViewVariable *)This;
|
|
|
|
|
|
|
|
return (ID3D10EffectDepthStencilViewVariable *)&null_depth_stencil_view_variable;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_variable_AsConstantBuffer(
|
|
|
|
ID3D10EffectVariable *iface)
|
|
|
|
{
|
2009-10-27 20:12:11 +01:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-10-27 20:12:11 +01:00
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
2010-03-27 10:36:26 +01:00
|
|
|
if (This->vtbl == (const ID3D10EffectVariableVtbl *)&d3d10_effect_constant_buffer_vtbl)
|
2009-10-27 20:12:11 +01:00
|
|
|
return (ID3D10EffectConstantBuffer *)This;
|
|
|
|
|
|
|
|
return (ID3D10EffectConstantBuffer *)&null_local_buffer;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderVariable * STDMETHODCALLTYPE d3d10_effect_variable_AsShader(
|
|
|
|
ID3D10EffectVariable *iface)
|
|
|
|
{
|
2009-10-27 20:13:49 +01:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-10-27 20:13:49 +01:00
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
2010-03-27 10:36:26 +01:00
|
|
|
if (This->vtbl == (const ID3D10EffectVariableVtbl *)&d3d10_effect_shader_variable_vtbl)
|
2009-10-27 20:13:49 +01:00
|
|
|
return (ID3D10EffectShaderVariable *)This;
|
|
|
|
|
|
|
|
return (ID3D10EffectShaderVariable *)&null_shader_variable;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectBlendVariable * STDMETHODCALLTYPE d3d10_effect_variable_AsBlend(ID3D10EffectVariable *iface)
|
|
|
|
{
|
2009-10-27 20:12:29 +01:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-10-27 20:12:29 +01:00
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
2010-03-27 10:36:26 +01:00
|
|
|
if (This->vtbl == (const ID3D10EffectVariableVtbl *)&d3d10_effect_blend_variable_vtbl)
|
2009-10-27 20:12:29 +01:00
|
|
|
return (ID3D10EffectBlendVariable *)This;
|
|
|
|
|
|
|
|
return (ID3D10EffectBlendVariable *)&null_blend_variable;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilVariable * STDMETHODCALLTYPE d3d10_effect_variable_AsDepthStencil(
|
|
|
|
ID3D10EffectVariable *iface)
|
|
|
|
{
|
2009-10-27 20:12:53 +01:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-10-27 20:12:53 +01:00
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
2010-03-27 10:36:26 +01:00
|
|
|
if (This->vtbl == (const ID3D10EffectVariableVtbl *)&d3d10_effect_depth_stencil_variable_vtbl)
|
2009-10-27 20:12:53 +01:00
|
|
|
return (ID3D10EffectDepthStencilVariable *)This;
|
|
|
|
|
|
|
|
return (ID3D10EffectDepthStencilVariable *)&null_depth_stencil_variable;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRasterizerVariable * STDMETHODCALLTYPE d3d10_effect_variable_AsRasterizer(
|
|
|
|
ID3D10EffectVariable *iface)
|
|
|
|
{
|
2009-10-27 20:13:12 +01:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-10-27 20:13:12 +01:00
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
2010-03-27 10:36:26 +01:00
|
|
|
if (This->vtbl == (const ID3D10EffectVariableVtbl *)&d3d10_effect_rasterizer_variable_vtbl)
|
2009-10-27 20:13:12 +01:00
|
|
|
return (ID3D10EffectRasterizerVariable *)This;
|
|
|
|
|
|
|
|
return (ID3D10EffectRasterizerVariable *)&null_rasterizer_variable;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectSamplerVariable * STDMETHODCALLTYPE d3d10_effect_variable_AsSampler(
|
|
|
|
ID3D10EffectVariable *iface)
|
|
|
|
{
|
2009-10-27 20:13:25 +01:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
2009-07-15 12:21:21 +02:00
|
|
|
|
2009-10-27 20:13:25 +01:00
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
2010-03-27 10:36:26 +01:00
|
|
|
if (This->vtbl == (const ID3D10EffectVariableVtbl *)&d3d10_effect_sampler_variable_vtbl)
|
2009-10-27 20:13:25 +01:00
|
|
|
return (ID3D10EffectSamplerVariable *)This;
|
|
|
|
|
|
|
|
return (ID3D10EffectSamplerVariable *)&null_sampler_variable;
|
2009-07-15 12:21:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_variable_SetRawValue(ID3D10EffectVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, data %p, offset %u, count %u stub!\n", iface, data, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_variable_GetRawValue(ID3D10EffectVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, data %p, offset %u, count %u stub!\n", iface, data, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D10EffectVariableVtbl d3d10_effect_variable_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
d3d10_effect_variable_IsValid,
|
|
|
|
d3d10_effect_variable_GetType,
|
|
|
|
d3d10_effect_variable_GetDesc,
|
|
|
|
d3d10_effect_variable_GetAnnotationByIndex,
|
|
|
|
d3d10_effect_variable_GetAnnotationByName,
|
|
|
|
d3d10_effect_variable_GetMemberByIndex,
|
|
|
|
d3d10_effect_variable_GetMemberByName,
|
|
|
|
d3d10_effect_variable_GetMemberBySemantic,
|
|
|
|
d3d10_effect_variable_GetElement,
|
|
|
|
d3d10_effect_variable_GetParentConstantBuffer,
|
|
|
|
d3d10_effect_variable_AsScalar,
|
|
|
|
d3d10_effect_variable_AsVector,
|
|
|
|
d3d10_effect_variable_AsMatrix,
|
|
|
|
d3d10_effect_variable_AsString,
|
|
|
|
d3d10_effect_variable_AsShaderResource,
|
|
|
|
d3d10_effect_variable_AsRenderTargetView,
|
|
|
|
d3d10_effect_variable_AsDepthStencilView,
|
|
|
|
d3d10_effect_variable_AsConstantBuffer,
|
|
|
|
d3d10_effect_variable_AsShader,
|
|
|
|
d3d10_effect_variable_AsBlend,
|
|
|
|
d3d10_effect_variable_AsDepthStencil,
|
|
|
|
d3d10_effect_variable_AsRasterizer,
|
|
|
|
d3d10_effect_variable_AsSampler,
|
|
|
|
d3d10_effect_variable_SetRawValue,
|
|
|
|
d3d10_effect_variable_GetRawValue,
|
|
|
|
};
|
2009-08-20 19:05:35 +02:00
|
|
|
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_constant_buffer_IsValid(ID3D10EffectConstantBuffer *iface)
|
|
|
|
{
|
2009-09-07 11:15:14 +02:00
|
|
|
TRACE("iface %p\n", iface);
|
2009-08-20 19:05:35 +02:00
|
|
|
|
2009-09-30 11:40:38 +02:00
|
|
|
return (struct d3d10_effect_variable *)iface != &null_local_buffer;
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_constant_buffer_GetType(ID3D10EffectConstantBuffer *iface)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_GetType((ID3D10EffectVariable *)iface);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_constant_buffer_GetDesc(ID3D10EffectConstantBuffer *iface,
|
|
|
|
D3D10_EFFECT_VARIABLE_DESC *desc)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_GetDesc((ID3D10EffectVariable *)iface, desc);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_GetAnnotationByIndex(
|
|
|
|
ID3D10EffectConstantBuffer *iface, UINT index)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_GetAnnotationByIndex((ID3D10EffectVariable *)iface, index);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_GetAnnotationByName(
|
|
|
|
ID3D10EffectConstantBuffer *iface, LPCSTR name)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_GetAnnotationByName((ID3D10EffectVariable *)iface, name);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_GetMemberByIndex(
|
|
|
|
ID3D10EffectConstantBuffer *iface, UINT index)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_GetMemberByIndex((ID3D10EffectVariable *)iface, index);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_GetMemberByName(
|
|
|
|
ID3D10EffectConstantBuffer *iface, LPCSTR name)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_GetMemberByName((ID3D10EffectVariable *)iface, name);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_GetMemberBySemantic(
|
|
|
|
ID3D10EffectConstantBuffer *iface, LPCSTR semantic)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_GetMemberBySemantic((ID3D10EffectVariable *)iface, semantic);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_GetElement(
|
|
|
|
ID3D10EffectConstantBuffer *iface, UINT index)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_GetElement((ID3D10EffectVariable *)iface, index);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_constant_buffer_GetParentConstantBuffer(
|
|
|
|
ID3D10EffectConstantBuffer *iface)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_GetParentConstantBuffer((ID3D10EffectVariable *)iface);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectScalarVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_AsScalar(
|
|
|
|
ID3D10EffectConstantBuffer *iface)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_AsScalar((ID3D10EffectVariable *)iface);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVectorVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_AsVector(
|
|
|
|
ID3D10EffectConstantBuffer *iface)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_AsVector((ID3D10EffectVariable *)iface);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectMatrixVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_AsMatrix(
|
|
|
|
ID3D10EffectConstantBuffer *iface)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_AsMatrix((ID3D10EffectVariable *)iface);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectStringVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_AsString(
|
|
|
|
ID3D10EffectConstantBuffer *iface)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_AsString((ID3D10EffectVariable *)iface);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderResourceVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_AsShaderResource(
|
|
|
|
ID3D10EffectConstantBuffer *iface)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_AsShaderResource((ID3D10EffectVariable *)iface);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRenderTargetViewVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_AsRenderTargetView(
|
|
|
|
ID3D10EffectConstantBuffer *iface)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_AsRenderTargetView((ID3D10EffectVariable *)iface);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilViewVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_AsDepthStencilView(
|
|
|
|
ID3D10EffectConstantBuffer *iface)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_AsDepthStencilView((ID3D10EffectVariable *)iface);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_constant_buffer_AsConstantBuffer(
|
|
|
|
ID3D10EffectConstantBuffer *iface)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_AsConstantBuffer((ID3D10EffectVariable *)iface);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_AsShader(
|
|
|
|
ID3D10EffectConstantBuffer *iface)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_AsShader((ID3D10EffectVariable *)iface);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectBlendVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_AsBlend(ID3D10EffectConstantBuffer *iface)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_AsBlend((ID3D10EffectVariable *)iface);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_AsDepthStencil(
|
|
|
|
ID3D10EffectConstantBuffer *iface)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_AsDepthStencil((ID3D10EffectVariable *)iface);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRasterizerVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_AsRasterizer(
|
|
|
|
ID3D10EffectConstantBuffer *iface)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_AsRasterizer((ID3D10EffectVariable *)iface);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectSamplerVariable * STDMETHODCALLTYPE d3d10_effect_constant_buffer_AsSampler(
|
|
|
|
ID3D10EffectConstantBuffer *iface)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_AsSampler((ID3D10EffectVariable *)iface);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_constant_buffer_SetRawValue(ID3D10EffectConstantBuffer *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_SetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_constant_buffer_GetRawValue(ID3D10EffectConstantBuffer *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
2009-09-30 11:41:16 +02:00
|
|
|
return d3d10_effect_variable_GetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
2009-08-20 19:05:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10EffectConstantBuffer methods */
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_constant_buffer_SetConstantBuffer(ID3D10EffectConstantBuffer *iface,
|
|
|
|
ID3D10Buffer *buffer)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, buffer %p stub!\n", iface, buffer);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_constant_buffer_GetConstantBuffer(ID3D10EffectConstantBuffer *iface,
|
|
|
|
ID3D10Buffer **buffer)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, buffer %p stub!\n", iface, buffer);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_constant_buffer_SetTextureBuffer(ID3D10EffectConstantBuffer *iface,
|
|
|
|
ID3D10ShaderResourceView *view)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, view %p stub!\n", iface, view);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_constant_buffer_GetTextureBuffer(ID3D10EffectConstantBuffer *iface,
|
|
|
|
ID3D10ShaderResourceView **view)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, view %p stub!\n", iface, view);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D10EffectConstantBufferVtbl d3d10_effect_constant_buffer_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
d3d10_effect_constant_buffer_IsValid,
|
|
|
|
d3d10_effect_constant_buffer_GetType,
|
|
|
|
d3d10_effect_constant_buffer_GetDesc,
|
|
|
|
d3d10_effect_constant_buffer_GetAnnotationByIndex,
|
|
|
|
d3d10_effect_constant_buffer_GetAnnotationByName,
|
|
|
|
d3d10_effect_constant_buffer_GetMemberByIndex,
|
|
|
|
d3d10_effect_constant_buffer_GetMemberByName,
|
|
|
|
d3d10_effect_constant_buffer_GetMemberBySemantic,
|
|
|
|
d3d10_effect_constant_buffer_GetElement,
|
|
|
|
d3d10_effect_constant_buffer_GetParentConstantBuffer,
|
|
|
|
d3d10_effect_constant_buffer_AsScalar,
|
|
|
|
d3d10_effect_constant_buffer_AsVector,
|
|
|
|
d3d10_effect_constant_buffer_AsMatrix,
|
|
|
|
d3d10_effect_constant_buffer_AsString,
|
|
|
|
d3d10_effect_constant_buffer_AsShaderResource,
|
|
|
|
d3d10_effect_constant_buffer_AsRenderTargetView,
|
|
|
|
d3d10_effect_constant_buffer_AsDepthStencilView,
|
|
|
|
d3d10_effect_constant_buffer_AsConstantBuffer,
|
|
|
|
d3d10_effect_constant_buffer_AsShader,
|
|
|
|
d3d10_effect_constant_buffer_AsBlend,
|
|
|
|
d3d10_effect_constant_buffer_AsDepthStencil,
|
|
|
|
d3d10_effect_constant_buffer_AsRasterizer,
|
|
|
|
d3d10_effect_constant_buffer_AsSampler,
|
|
|
|
d3d10_effect_constant_buffer_SetRawValue,
|
|
|
|
d3d10_effect_constant_buffer_GetRawValue,
|
|
|
|
/* ID3D10EffectConstantBuffer methods */
|
|
|
|
d3d10_effect_constant_buffer_SetConstantBuffer,
|
|
|
|
d3d10_effect_constant_buffer_GetConstantBuffer,
|
|
|
|
d3d10_effect_constant_buffer_SetTextureBuffer,
|
|
|
|
d3d10_effect_constant_buffer_GetTextureBuffer,
|
|
|
|
};
|
2009-09-08 16:38:00 +02:00
|
|
|
|
2009-09-09 18:12:41 +02:00
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
|
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_scalar_variable_IsValid(ID3D10EffectScalarVariable *iface)
|
|
|
|
{
|
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
|
|
|
return (struct d3d10_effect_variable *)iface != &null_scalar_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_scalar_variable_GetType(
|
|
|
|
ID3D10EffectScalarVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetType((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_scalar_variable_GetDesc(ID3D10EffectScalarVariable *iface,
|
|
|
|
D3D10_EFFECT_VARIABLE_DESC *desc)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetDesc((ID3D10EffectVariable *)iface, desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_GetAnnotationByIndex(
|
|
|
|
ID3D10EffectScalarVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_GetAnnotationByName(
|
|
|
|
ID3D10EffectScalarVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_GetMemberByIndex(
|
|
|
|
ID3D10EffectScalarVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_GetMemberByName(
|
|
|
|
ID3D10EffectScalarVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_GetMemberBySemantic(
|
|
|
|
ID3D10EffectScalarVariable *iface, LPCSTR semantic)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberBySemantic((ID3D10EffectVariable *)iface, semantic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_GetElement(
|
|
|
|
ID3D10EffectScalarVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetElement((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_scalar_variable_GetParentConstantBuffer(
|
|
|
|
ID3D10EffectScalarVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetParentConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectScalarVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_AsScalar(
|
|
|
|
ID3D10EffectScalarVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsScalar((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVectorVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_AsVector(
|
|
|
|
ID3D10EffectScalarVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsVector((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectMatrixVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_AsMatrix(
|
|
|
|
ID3D10EffectScalarVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsMatrix((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectStringVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_AsString(
|
|
|
|
ID3D10EffectScalarVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsString((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderResourceVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_AsShaderResource(
|
|
|
|
ID3D10EffectScalarVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShaderResource((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRenderTargetViewVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_AsRenderTargetView(
|
|
|
|
ID3D10EffectScalarVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRenderTargetView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilViewVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_AsDepthStencilView(
|
|
|
|
ID3D10EffectScalarVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencilView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_scalar_variable_AsConstantBuffer(
|
|
|
|
ID3D10EffectScalarVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_AsShader(
|
|
|
|
ID3D10EffectScalarVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShader((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectBlendVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_AsBlend(
|
|
|
|
ID3D10EffectScalarVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsBlend((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_AsDepthStencil(
|
|
|
|
ID3D10EffectScalarVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencil((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRasterizerVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_AsRasterizer(
|
|
|
|
ID3D10EffectScalarVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRasterizer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectSamplerVariable * STDMETHODCALLTYPE d3d10_effect_scalar_variable_AsSampler(
|
|
|
|
ID3D10EffectScalarVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsSampler((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_scalar_variable_SetRawValue(ID3D10EffectScalarVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_SetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_scalar_variable_GetRawValue(ID3D10EffectScalarVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10EffectScalarVariable methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_scalar_variable_SetFloat(ID3D10EffectScalarVariable *iface,
|
|
|
|
float value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, value %.8e stub!\n", iface, value);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_scalar_variable_GetFloat(ID3D10EffectScalarVariable *iface,
|
|
|
|
float *value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub!\n", iface, value);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_scalar_variable_SetFloatArray(ID3D10EffectScalarVariable *iface,
|
|
|
|
float *values, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, values %p, offset %u, count %u stub!\n", iface, values, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_scalar_variable_GetFloatArray(ID3D10EffectScalarVariable *iface,
|
|
|
|
float *values, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, values %p, offset %u, count %u stub!\n", iface, values, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_scalar_variable_SetInt(ID3D10EffectScalarVariable *iface,
|
|
|
|
int value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, value %d stub!\n", iface, value);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_scalar_variable_GetInt(ID3D10EffectScalarVariable *iface,
|
|
|
|
int *value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub!\n", iface, value);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_scalar_variable_SetIntArray(ID3D10EffectScalarVariable *iface,
|
|
|
|
int *values, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, values %p, offset %u, count %u stub!\n", iface, values, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_scalar_variable_GetIntArray(ID3D10EffectScalarVariable *iface,
|
|
|
|
int *values, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, values %p, offset %u, count %u stub!\n", iface, values, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_scalar_variable_SetBool(ID3D10EffectScalarVariable *iface,
|
|
|
|
BOOL value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, value %d stub!\n", iface, value);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_scalar_variable_GetBool(ID3D10EffectScalarVariable *iface,
|
|
|
|
BOOL *value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub!\n", iface, value);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_scalar_variable_SetBoolArray(ID3D10EffectScalarVariable *iface,
|
|
|
|
BOOL *values, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, values %p, offset %u, count %u stub!\n", iface, values, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_scalar_variable_GetBoolArray(ID3D10EffectScalarVariable *iface,
|
|
|
|
BOOL *values, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, values %p, offset %u, count %u stub!\n", iface, values, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D10EffectScalarVariableVtbl d3d10_effect_scalar_variable_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
d3d10_effect_scalar_variable_IsValid,
|
|
|
|
d3d10_effect_scalar_variable_GetType,
|
|
|
|
d3d10_effect_scalar_variable_GetDesc,
|
|
|
|
d3d10_effect_scalar_variable_GetAnnotationByIndex,
|
|
|
|
d3d10_effect_scalar_variable_GetAnnotationByName,
|
|
|
|
d3d10_effect_scalar_variable_GetMemberByIndex,
|
|
|
|
d3d10_effect_scalar_variable_GetMemberByName,
|
|
|
|
d3d10_effect_scalar_variable_GetMemberBySemantic,
|
|
|
|
d3d10_effect_scalar_variable_GetElement,
|
|
|
|
d3d10_effect_scalar_variable_GetParentConstantBuffer,
|
|
|
|
d3d10_effect_scalar_variable_AsScalar,
|
|
|
|
d3d10_effect_scalar_variable_AsVector,
|
|
|
|
d3d10_effect_scalar_variable_AsMatrix,
|
|
|
|
d3d10_effect_scalar_variable_AsString,
|
|
|
|
d3d10_effect_scalar_variable_AsShaderResource,
|
|
|
|
d3d10_effect_scalar_variable_AsRenderTargetView,
|
|
|
|
d3d10_effect_scalar_variable_AsDepthStencilView,
|
|
|
|
d3d10_effect_scalar_variable_AsConstantBuffer,
|
|
|
|
d3d10_effect_scalar_variable_AsShader,
|
|
|
|
d3d10_effect_scalar_variable_AsBlend,
|
|
|
|
d3d10_effect_scalar_variable_AsDepthStencil,
|
|
|
|
d3d10_effect_scalar_variable_AsRasterizer,
|
|
|
|
d3d10_effect_scalar_variable_AsSampler,
|
|
|
|
d3d10_effect_scalar_variable_SetRawValue,
|
|
|
|
d3d10_effect_scalar_variable_GetRawValue,
|
|
|
|
/* ID3D10EffectScalarVariable methods */
|
|
|
|
d3d10_effect_scalar_variable_SetFloat,
|
|
|
|
d3d10_effect_scalar_variable_GetFloat,
|
|
|
|
d3d10_effect_scalar_variable_SetFloatArray,
|
|
|
|
d3d10_effect_scalar_variable_GetFloatArray,
|
|
|
|
d3d10_effect_scalar_variable_SetInt,
|
|
|
|
d3d10_effect_scalar_variable_GetInt,
|
|
|
|
d3d10_effect_scalar_variable_SetIntArray,
|
|
|
|
d3d10_effect_scalar_variable_GetIntArray,
|
|
|
|
d3d10_effect_scalar_variable_SetBool,
|
|
|
|
d3d10_effect_scalar_variable_GetBool,
|
|
|
|
d3d10_effect_scalar_variable_SetBoolArray,
|
|
|
|
d3d10_effect_scalar_variable_GetBoolArray,
|
|
|
|
};
|
|
|
|
|
2009-09-09 18:12:42 +02:00
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
|
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_vector_variable_IsValid(ID3D10EffectVectorVariable *iface)
|
|
|
|
{
|
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
|
|
|
return (struct d3d10_effect_variable *)iface != &null_vector_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_vector_variable_GetType(
|
|
|
|
ID3D10EffectVectorVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetType((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_vector_variable_GetDesc(ID3D10EffectVectorVariable *iface,
|
|
|
|
D3D10_EFFECT_VARIABLE_DESC *desc)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetDesc((ID3D10EffectVariable *)iface, desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_GetAnnotationByIndex(
|
|
|
|
ID3D10EffectVectorVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_GetAnnotationByName(
|
|
|
|
ID3D10EffectVectorVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_GetMemberByIndex(
|
|
|
|
ID3D10EffectVectorVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_GetMemberByName(
|
|
|
|
ID3D10EffectVectorVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_GetMemberBySemantic(
|
|
|
|
ID3D10EffectVectorVariable *iface, LPCSTR semantic)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberBySemantic((ID3D10EffectVariable *)iface, semantic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_GetElement(
|
|
|
|
ID3D10EffectVectorVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetElement((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_vector_variable_GetParentConstantBuffer(
|
|
|
|
ID3D10EffectVectorVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetParentConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectScalarVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_AsScalar(
|
|
|
|
ID3D10EffectVectorVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsScalar((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVectorVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_AsVector(
|
|
|
|
ID3D10EffectVectorVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsVector((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectMatrixVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_AsMatrix(
|
|
|
|
ID3D10EffectVectorVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsMatrix((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectStringVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_AsString(
|
|
|
|
ID3D10EffectVectorVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsString((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderResourceVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_AsShaderResource(
|
|
|
|
ID3D10EffectVectorVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShaderResource((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRenderTargetViewVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_AsRenderTargetView(
|
|
|
|
ID3D10EffectVectorVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRenderTargetView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilViewVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_AsDepthStencilView(
|
|
|
|
ID3D10EffectVectorVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencilView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_vector_variable_AsConstantBuffer(
|
|
|
|
ID3D10EffectVectorVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_AsShader(
|
|
|
|
ID3D10EffectVectorVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShader((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectBlendVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_AsBlend(
|
|
|
|
ID3D10EffectVectorVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsBlend((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_AsDepthStencil(
|
|
|
|
ID3D10EffectVectorVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencil((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRasterizerVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_AsRasterizer(
|
|
|
|
ID3D10EffectVectorVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRasterizer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectSamplerVariable * STDMETHODCALLTYPE d3d10_effect_vector_variable_AsSampler(
|
|
|
|
ID3D10EffectVectorVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsSampler((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_vector_variable_SetRawValue(ID3D10EffectVectorVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_SetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_vector_variable_GetRawValue(ID3D10EffectVectorVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10EffectVectorVariable methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_vector_variable_SetBoolVector(ID3D10EffectVectorVariable *iface,
|
|
|
|
BOOL *value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub!\n", iface, value);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_vector_variable_SetIntVector(ID3D10EffectVectorVariable *iface,
|
|
|
|
int *value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub!\n", iface, value);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_vector_variable_SetFloatVector(ID3D10EffectVectorVariable *iface,
|
|
|
|
float *value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub!\n", iface, value);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_vector_variable_GetBoolVector(ID3D10EffectVectorVariable *iface,
|
|
|
|
BOOL *value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub!\n", iface, value);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_vector_variable_GetIntVector(ID3D10EffectVectorVariable *iface,
|
|
|
|
int *value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub!\n", iface, value);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_vector_variable_GetFloatVector(ID3D10EffectVectorVariable *iface,
|
|
|
|
float *value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub!\n", iface, value);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_vector_variable_SetBoolVectorArray(ID3D10EffectVectorVariable *iface,
|
|
|
|
BOOL *values, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, values %p, offset %u, count %u stub!\n", iface, values, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_vector_variable_SetIntVectorArray(ID3D10EffectVectorVariable *iface,
|
|
|
|
int *values, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, values %p, offset %u, count %u stub!\n", iface, values, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_vector_variable_SetFloatVectorArray(ID3D10EffectVectorVariable *iface,
|
|
|
|
float *values, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, values %p, offset %u, count %u stub!\n", iface, values, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_vector_variable_GetBoolVectorArray(ID3D10EffectVectorVariable *iface,
|
|
|
|
BOOL *values, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, values %p, offset %u, count %u stub!\n", iface, values, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_vector_variable_GetIntVectorArray(ID3D10EffectVectorVariable *iface,
|
|
|
|
int *values, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, values %p, offset %u, count %u stub!\n", iface, values, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_vector_variable_GetFloatVectorArray(ID3D10EffectVectorVariable *iface,
|
|
|
|
float *values, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, values %p, offset %u, count %u stub!\n", iface, values, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D10EffectVectorVariableVtbl d3d10_effect_vector_variable_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
d3d10_effect_vector_variable_IsValid,
|
|
|
|
d3d10_effect_vector_variable_GetType,
|
|
|
|
d3d10_effect_vector_variable_GetDesc,
|
|
|
|
d3d10_effect_vector_variable_GetAnnotationByIndex,
|
|
|
|
d3d10_effect_vector_variable_GetAnnotationByName,
|
|
|
|
d3d10_effect_vector_variable_GetMemberByIndex,
|
|
|
|
d3d10_effect_vector_variable_GetMemberByName,
|
|
|
|
d3d10_effect_vector_variable_GetMemberBySemantic,
|
|
|
|
d3d10_effect_vector_variable_GetElement,
|
|
|
|
d3d10_effect_vector_variable_GetParentConstantBuffer,
|
|
|
|
d3d10_effect_vector_variable_AsScalar,
|
|
|
|
d3d10_effect_vector_variable_AsVector,
|
|
|
|
d3d10_effect_vector_variable_AsMatrix,
|
|
|
|
d3d10_effect_vector_variable_AsString,
|
|
|
|
d3d10_effect_vector_variable_AsShaderResource,
|
|
|
|
d3d10_effect_vector_variable_AsRenderTargetView,
|
|
|
|
d3d10_effect_vector_variable_AsDepthStencilView,
|
|
|
|
d3d10_effect_vector_variable_AsConstantBuffer,
|
|
|
|
d3d10_effect_vector_variable_AsShader,
|
|
|
|
d3d10_effect_vector_variable_AsBlend,
|
|
|
|
d3d10_effect_vector_variable_AsDepthStencil,
|
|
|
|
d3d10_effect_vector_variable_AsRasterizer,
|
|
|
|
d3d10_effect_vector_variable_AsSampler,
|
|
|
|
d3d10_effect_vector_variable_SetRawValue,
|
|
|
|
d3d10_effect_vector_variable_GetRawValue,
|
|
|
|
/* ID3D10EffectVectorVariable methods */
|
|
|
|
d3d10_effect_vector_variable_SetBoolVector,
|
|
|
|
d3d10_effect_vector_variable_SetIntVector,
|
|
|
|
d3d10_effect_vector_variable_SetFloatVector,
|
|
|
|
d3d10_effect_vector_variable_GetBoolVector,
|
|
|
|
d3d10_effect_vector_variable_GetIntVector,
|
|
|
|
d3d10_effect_vector_variable_GetFloatVector,
|
|
|
|
d3d10_effect_vector_variable_SetBoolVectorArray,
|
|
|
|
d3d10_effect_vector_variable_SetIntVectorArray,
|
|
|
|
d3d10_effect_vector_variable_SetFloatVectorArray,
|
|
|
|
d3d10_effect_vector_variable_GetBoolVectorArray,
|
|
|
|
d3d10_effect_vector_variable_GetIntVectorArray,
|
|
|
|
d3d10_effect_vector_variable_GetFloatVectorArray,
|
|
|
|
};
|
|
|
|
|
2009-09-09 18:12:43 +02:00
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
|
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_matrix_variable_IsValid(ID3D10EffectMatrixVariable *iface)
|
|
|
|
{
|
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
|
|
|
return (struct d3d10_effect_variable *)iface != &null_matrix_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_matrix_variable_GetType(
|
|
|
|
ID3D10EffectMatrixVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetType((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_matrix_variable_GetDesc(ID3D10EffectMatrixVariable *iface,
|
|
|
|
D3D10_EFFECT_VARIABLE_DESC *desc)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetDesc((ID3D10EffectVariable *)iface, desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_GetAnnotationByIndex(
|
|
|
|
ID3D10EffectMatrixVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_GetAnnotationByName(
|
|
|
|
ID3D10EffectMatrixVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_GetMemberByIndex(
|
|
|
|
ID3D10EffectMatrixVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_GetMemberByName(
|
|
|
|
ID3D10EffectMatrixVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_GetMemberBySemantic(
|
|
|
|
ID3D10EffectMatrixVariable *iface, LPCSTR semantic)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberBySemantic((ID3D10EffectVariable *)iface, semantic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_GetElement(
|
|
|
|
ID3D10EffectMatrixVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetElement((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_matrix_variable_GetParentConstantBuffer(
|
|
|
|
ID3D10EffectMatrixVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetParentConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectScalarVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_AsScalar(
|
|
|
|
ID3D10EffectMatrixVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsScalar((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVectorVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_AsVector(
|
|
|
|
ID3D10EffectMatrixVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsVector((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectMatrixVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_AsMatrix(
|
|
|
|
ID3D10EffectMatrixVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsMatrix((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectStringVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_AsString(
|
|
|
|
ID3D10EffectMatrixVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsString((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderResourceVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_AsShaderResource(
|
|
|
|
ID3D10EffectMatrixVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShaderResource((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRenderTargetViewVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_AsRenderTargetView(
|
|
|
|
ID3D10EffectMatrixVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRenderTargetView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilViewVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_AsDepthStencilView(
|
|
|
|
ID3D10EffectMatrixVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencilView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_matrix_variable_AsConstantBuffer(
|
|
|
|
ID3D10EffectMatrixVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_AsShader(
|
|
|
|
ID3D10EffectMatrixVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShader((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectBlendVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_AsBlend(
|
|
|
|
ID3D10EffectMatrixVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsBlend((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_AsDepthStencil(
|
|
|
|
ID3D10EffectMatrixVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencil((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRasterizerVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_AsRasterizer(
|
|
|
|
ID3D10EffectMatrixVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRasterizer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectSamplerVariable * STDMETHODCALLTYPE d3d10_effect_matrix_variable_AsSampler(
|
|
|
|
ID3D10EffectMatrixVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsSampler((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_matrix_variable_SetRawValue(ID3D10EffectMatrixVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_SetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_matrix_variable_GetRawValue(ID3D10EffectMatrixVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10EffectMatrixVariable methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_matrix_variable_SetMatrix(ID3D10EffectMatrixVariable *iface,
|
|
|
|
float *data)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, data %p stub!\n", iface, data);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_matrix_variable_GetMatrix(ID3D10EffectMatrixVariable *iface,
|
|
|
|
float *data)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, data %p stub!\n", iface, data);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_matrix_variable_SetMatrixArray(ID3D10EffectMatrixVariable *iface,
|
|
|
|
float *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, data %p, offset %u, count %u stub!\n", iface, data, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_matrix_variable_GetMatrixArray(ID3D10EffectMatrixVariable *iface,
|
|
|
|
float *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, data %p, offset %u, count %u stub!\n", iface, data, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_matrix_variable_SetMatrixTranspose(ID3D10EffectMatrixVariable *iface,
|
|
|
|
float *data)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, data %p stub!\n", iface, data);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_matrix_variable_GetMatrixTranspose(ID3D10EffectMatrixVariable *iface,
|
|
|
|
float *data)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, data %p stub!\n", iface, data);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_matrix_variable_SetMatrixTransposeArray(ID3D10EffectMatrixVariable *iface,
|
|
|
|
float *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, data %p, offset %u, count %u stub!\n", iface, data, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_matrix_variable_GetMatrixTransposeArray(ID3D10EffectMatrixVariable *iface,
|
|
|
|
float *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, data %p, offset %u, count %u stub!\n", iface, data, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const struct ID3D10EffectMatrixVariableVtbl d3d10_effect_matrix_variable_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
d3d10_effect_matrix_variable_IsValid,
|
|
|
|
d3d10_effect_matrix_variable_GetType,
|
|
|
|
d3d10_effect_matrix_variable_GetDesc,
|
|
|
|
d3d10_effect_matrix_variable_GetAnnotationByIndex,
|
|
|
|
d3d10_effect_matrix_variable_GetAnnotationByName,
|
|
|
|
d3d10_effect_matrix_variable_GetMemberByIndex,
|
|
|
|
d3d10_effect_matrix_variable_GetMemberByName,
|
|
|
|
d3d10_effect_matrix_variable_GetMemberBySemantic,
|
|
|
|
d3d10_effect_matrix_variable_GetElement,
|
|
|
|
d3d10_effect_matrix_variable_GetParentConstantBuffer,
|
|
|
|
d3d10_effect_matrix_variable_AsScalar,
|
|
|
|
d3d10_effect_matrix_variable_AsVector,
|
|
|
|
d3d10_effect_matrix_variable_AsMatrix,
|
|
|
|
d3d10_effect_matrix_variable_AsString,
|
|
|
|
d3d10_effect_matrix_variable_AsShaderResource,
|
|
|
|
d3d10_effect_matrix_variable_AsRenderTargetView,
|
|
|
|
d3d10_effect_matrix_variable_AsDepthStencilView,
|
|
|
|
d3d10_effect_matrix_variable_AsConstantBuffer,
|
|
|
|
d3d10_effect_matrix_variable_AsShader,
|
|
|
|
d3d10_effect_matrix_variable_AsBlend,
|
|
|
|
d3d10_effect_matrix_variable_AsDepthStencil,
|
|
|
|
d3d10_effect_matrix_variable_AsRasterizer,
|
|
|
|
d3d10_effect_matrix_variable_AsSampler,
|
|
|
|
d3d10_effect_matrix_variable_SetRawValue,
|
|
|
|
d3d10_effect_matrix_variable_GetRawValue,
|
|
|
|
/* ID3D10EffectMatrixVariable methods */
|
|
|
|
d3d10_effect_matrix_variable_SetMatrix,
|
|
|
|
d3d10_effect_matrix_variable_GetMatrix,
|
|
|
|
d3d10_effect_matrix_variable_SetMatrixArray,
|
|
|
|
d3d10_effect_matrix_variable_GetMatrixArray,
|
|
|
|
d3d10_effect_matrix_variable_SetMatrixTranspose,
|
|
|
|
d3d10_effect_matrix_variable_GetMatrixTranspose,
|
|
|
|
d3d10_effect_matrix_variable_SetMatrixTransposeArray,
|
|
|
|
d3d10_effect_matrix_variable_GetMatrixTransposeArray,
|
|
|
|
};
|
|
|
|
|
2009-10-26 18:38:31 +01:00
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
|
2009-10-26 18:38:57 +01:00
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_string_variable_IsValid(ID3D10EffectStringVariable *iface)
|
|
|
|
{
|
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
|
|
|
return (struct d3d10_effect_variable *)iface != &null_string_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_string_variable_GetType(
|
|
|
|
ID3D10EffectStringVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetType((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_string_variable_GetDesc(ID3D10EffectStringVariable *iface,
|
|
|
|
D3D10_EFFECT_VARIABLE_DESC *desc)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetDesc((ID3D10EffectVariable *)iface, desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_GetAnnotationByIndex(
|
|
|
|
ID3D10EffectStringVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_GetAnnotationByName(
|
|
|
|
ID3D10EffectStringVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_GetMemberByIndex(
|
|
|
|
ID3D10EffectStringVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_GetMemberByName(
|
|
|
|
ID3D10EffectStringVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_GetMemberBySemantic(
|
|
|
|
ID3D10EffectStringVariable *iface, LPCSTR semantic)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberBySemantic((ID3D10EffectVariable *)iface, semantic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_GetElement(
|
|
|
|
ID3D10EffectStringVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetElement((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_string_variable_GetParentConstantBuffer(
|
|
|
|
ID3D10EffectStringVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetParentConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectScalarVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_AsScalar(
|
|
|
|
ID3D10EffectStringVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsScalar((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVectorVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_AsVector(
|
|
|
|
ID3D10EffectStringVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsVector((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectMatrixVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_AsMatrix(
|
|
|
|
ID3D10EffectStringVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsMatrix((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectStringVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_AsString(
|
|
|
|
ID3D10EffectStringVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsString((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderResourceVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_AsShaderResource(
|
|
|
|
ID3D10EffectStringVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShaderResource((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRenderTargetViewVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_AsRenderTargetView(
|
|
|
|
ID3D10EffectStringVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRenderTargetView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilViewVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_AsDepthStencilView(
|
|
|
|
ID3D10EffectStringVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencilView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_string_variable_AsConstantBuffer(
|
|
|
|
ID3D10EffectStringVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_AsShader(
|
|
|
|
ID3D10EffectStringVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShader((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectBlendVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_AsBlend(
|
|
|
|
ID3D10EffectStringVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsBlend((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_AsDepthStencil(
|
|
|
|
ID3D10EffectStringVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencil((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRasterizerVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_AsRasterizer(
|
|
|
|
ID3D10EffectStringVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRasterizer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectSamplerVariable * STDMETHODCALLTYPE d3d10_effect_string_variable_AsSampler(
|
|
|
|
ID3D10EffectStringVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsSampler((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_string_variable_SetRawValue(ID3D10EffectStringVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_SetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_string_variable_GetRawValue(ID3D10EffectStringVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10EffectStringVariable methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_string_variable_GetString(ID3D10EffectStringVariable *iface,
|
|
|
|
LPCSTR *str)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, str %p stub!\n", iface, str);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_string_variable_GetStringArray(ID3D10EffectStringVariable *iface,
|
|
|
|
LPCSTR *strs, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, strs %p, offset %u, count %u stub!\n", iface, strs, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const struct ID3D10EffectStringVariableVtbl d3d10_effect_string_variable_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
d3d10_effect_string_variable_IsValid,
|
|
|
|
d3d10_effect_string_variable_GetType,
|
|
|
|
d3d10_effect_string_variable_GetDesc,
|
|
|
|
d3d10_effect_string_variable_GetAnnotationByIndex,
|
|
|
|
d3d10_effect_string_variable_GetAnnotationByName,
|
|
|
|
d3d10_effect_string_variable_GetMemberByIndex,
|
|
|
|
d3d10_effect_string_variable_GetMemberByName,
|
|
|
|
d3d10_effect_string_variable_GetMemberBySemantic,
|
|
|
|
d3d10_effect_string_variable_GetElement,
|
|
|
|
d3d10_effect_string_variable_GetParentConstantBuffer,
|
|
|
|
d3d10_effect_string_variable_AsScalar,
|
|
|
|
d3d10_effect_string_variable_AsVector,
|
|
|
|
d3d10_effect_string_variable_AsMatrix,
|
|
|
|
d3d10_effect_string_variable_AsString,
|
|
|
|
d3d10_effect_string_variable_AsShaderResource,
|
|
|
|
d3d10_effect_string_variable_AsRenderTargetView,
|
|
|
|
d3d10_effect_string_variable_AsDepthStencilView,
|
|
|
|
d3d10_effect_string_variable_AsConstantBuffer,
|
|
|
|
d3d10_effect_string_variable_AsShader,
|
|
|
|
d3d10_effect_string_variable_AsBlend,
|
|
|
|
d3d10_effect_string_variable_AsDepthStencil,
|
|
|
|
d3d10_effect_string_variable_AsRasterizer,
|
|
|
|
d3d10_effect_string_variable_AsSampler,
|
|
|
|
d3d10_effect_string_variable_SetRawValue,
|
|
|
|
d3d10_effect_string_variable_GetRawValue,
|
|
|
|
/* ID3D10EffectStringVariable methods */
|
|
|
|
d3d10_effect_string_variable_GetString,
|
|
|
|
d3d10_effect_string_variable_GetStringArray,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
|
2009-10-26 18:39:00 +01:00
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_IsValid(ID3D10EffectShaderResourceVariable *iface)
|
|
|
|
{
|
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
|
|
|
return (struct d3d10_effect_variable *)iface != &null_shader_resource_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_GetType(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetType((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_GetDesc(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface, D3D10_EFFECT_VARIABLE_DESC *desc)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetDesc((ID3D10EffectVariable *)iface, desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_GetAnnotationByIndex(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_GetAnnotationByName(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_GetMemberByIndex(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_GetMemberByName(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_GetMemberBySemantic(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface, LPCSTR semantic)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberBySemantic((ID3D10EffectVariable *)iface, semantic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_GetElement(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetElement((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_GetParentConstantBuffer(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetParentConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectScalarVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_AsScalar(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsScalar((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVectorVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_AsVector(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsVector((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectMatrixVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_AsMatrix(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsMatrix((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectStringVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_AsString(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsString((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderResourceVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_AsShaderResource(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShaderResource((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRenderTargetViewVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_AsRenderTargetView(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRenderTargetView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilViewVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_AsDepthStencilView(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencilView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_AsConstantBuffer(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_AsShader(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShader((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectBlendVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_AsBlend(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsBlend((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_AsDepthStencil(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencil((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRasterizerVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_AsRasterizer(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRasterizer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectSamplerVariable * STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_AsSampler(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsSampler((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_SetRawValue(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface, void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_SetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_GetRawValue(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface, void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10EffectShaderResourceVariable methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_SetResource(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface, ID3D10ShaderResourceView *resource)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, resource %p stub!\n", iface, resource);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_GetResource(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface, ID3D10ShaderResourceView **resource)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, resource %p stub!\n", iface, resource);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_SetResourceArray(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface, ID3D10ShaderResourceView **resources, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, resources %p, offset %u, count %u stub!\n", iface, resources, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_shader_resource_variable_GetResourceArray(
|
|
|
|
ID3D10EffectShaderResourceVariable *iface, ID3D10ShaderResourceView **resources, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, resources %p, offset %u, count %u stub!\n", iface, resources, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const struct ID3D10EffectShaderResourceVariableVtbl d3d10_effect_shader_resource_variable_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
d3d10_effect_shader_resource_variable_IsValid,
|
|
|
|
d3d10_effect_shader_resource_variable_GetType,
|
|
|
|
d3d10_effect_shader_resource_variable_GetDesc,
|
|
|
|
d3d10_effect_shader_resource_variable_GetAnnotationByIndex,
|
|
|
|
d3d10_effect_shader_resource_variable_GetAnnotationByName,
|
|
|
|
d3d10_effect_shader_resource_variable_GetMemberByIndex,
|
|
|
|
d3d10_effect_shader_resource_variable_GetMemberByName,
|
|
|
|
d3d10_effect_shader_resource_variable_GetMemberBySemantic,
|
|
|
|
d3d10_effect_shader_resource_variable_GetElement,
|
|
|
|
d3d10_effect_shader_resource_variable_GetParentConstantBuffer,
|
|
|
|
d3d10_effect_shader_resource_variable_AsScalar,
|
|
|
|
d3d10_effect_shader_resource_variable_AsVector,
|
|
|
|
d3d10_effect_shader_resource_variable_AsMatrix,
|
|
|
|
d3d10_effect_shader_resource_variable_AsString,
|
|
|
|
d3d10_effect_shader_resource_variable_AsShaderResource,
|
|
|
|
d3d10_effect_shader_resource_variable_AsRenderTargetView,
|
|
|
|
d3d10_effect_shader_resource_variable_AsDepthStencilView,
|
|
|
|
d3d10_effect_shader_resource_variable_AsConstantBuffer,
|
|
|
|
d3d10_effect_shader_resource_variable_AsShader,
|
|
|
|
d3d10_effect_shader_resource_variable_AsBlend,
|
|
|
|
d3d10_effect_shader_resource_variable_AsDepthStencil,
|
|
|
|
d3d10_effect_shader_resource_variable_AsRasterizer,
|
|
|
|
d3d10_effect_shader_resource_variable_AsSampler,
|
|
|
|
d3d10_effect_shader_resource_variable_SetRawValue,
|
|
|
|
d3d10_effect_shader_resource_variable_GetRawValue,
|
|
|
|
/* ID3D10EffectShaderResourceVariable methods */
|
|
|
|
d3d10_effect_shader_resource_variable_SetResource,
|
|
|
|
d3d10_effect_shader_resource_variable_GetResource,
|
|
|
|
d3d10_effect_shader_resource_variable_SetResourceArray,
|
|
|
|
d3d10_effect_shader_resource_variable_GetResourceArray,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
|
2009-10-26 18:39:04 +01:00
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_IsValid(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface)
|
|
|
|
{
|
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
|
|
|
return (struct d3d10_effect_variable *)iface != &null_render_target_view_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_GetType(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetType((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_GetDesc(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface, D3D10_EFFECT_VARIABLE_DESC *desc)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetDesc((ID3D10EffectVariable *)iface, desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_GetAnnotationByIndex(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_GetAnnotationByName(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_GetMemberByIndex(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_GetMemberByName(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_GetMemberBySemantic(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface, LPCSTR semantic)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberBySemantic((ID3D10EffectVariable *)iface, semantic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_GetElement(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetElement((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_GetParentConstantBuffer(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetParentConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectScalarVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_AsScalar(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsScalar((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVectorVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_AsVector(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsVector((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectMatrixVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_AsMatrix(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsMatrix((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectStringVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_AsString(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsString((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderResourceVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_AsShaderResource(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShaderResource((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRenderTargetViewVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_AsRenderTargetView(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRenderTargetView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilViewVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_AsDepthStencilView(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencilView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_AsConstantBuffer(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_AsShader(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShader((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectBlendVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_AsBlend(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsBlend((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_AsDepthStencil(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencil((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRasterizerVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_AsRasterizer(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRasterizer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectSamplerVariable * STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_AsSampler(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsSampler((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_SetRawValue(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface, void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_SetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_GetRawValue(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface, void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10EffectRenderTargetViewVariable methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_SetRenderTarget(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface, ID3D10RenderTargetView *view)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, view %p stub!\n", iface, view);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_GetRenderTarget(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface, ID3D10RenderTargetView **view)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, view %p stub!\n", iface, view);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_SetRenderTargetArray(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface, ID3D10RenderTargetView **views, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, views %p, offset %u, count %u stub!\n", iface, views, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_render_target_view_variable_GetRenderTargetArray(
|
|
|
|
ID3D10EffectRenderTargetViewVariable *iface, ID3D10RenderTargetView **views, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, views %p, offset %u, count %u stub!\n", iface, views, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const struct ID3D10EffectRenderTargetViewVariableVtbl d3d10_effect_render_target_view_variable_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
d3d10_effect_render_target_view_variable_IsValid,
|
|
|
|
d3d10_effect_render_target_view_variable_GetType,
|
|
|
|
d3d10_effect_render_target_view_variable_GetDesc,
|
|
|
|
d3d10_effect_render_target_view_variable_GetAnnotationByIndex,
|
|
|
|
d3d10_effect_render_target_view_variable_GetAnnotationByName,
|
|
|
|
d3d10_effect_render_target_view_variable_GetMemberByIndex,
|
|
|
|
d3d10_effect_render_target_view_variable_GetMemberByName,
|
|
|
|
d3d10_effect_render_target_view_variable_GetMemberBySemantic,
|
|
|
|
d3d10_effect_render_target_view_variable_GetElement,
|
|
|
|
d3d10_effect_render_target_view_variable_GetParentConstantBuffer,
|
|
|
|
d3d10_effect_render_target_view_variable_AsScalar,
|
|
|
|
d3d10_effect_render_target_view_variable_AsVector,
|
|
|
|
d3d10_effect_render_target_view_variable_AsMatrix,
|
|
|
|
d3d10_effect_render_target_view_variable_AsString,
|
|
|
|
d3d10_effect_render_target_view_variable_AsShaderResource,
|
|
|
|
d3d10_effect_render_target_view_variable_AsRenderTargetView,
|
|
|
|
d3d10_effect_render_target_view_variable_AsDepthStencilView,
|
|
|
|
d3d10_effect_render_target_view_variable_AsConstantBuffer,
|
|
|
|
d3d10_effect_render_target_view_variable_AsShader,
|
|
|
|
d3d10_effect_render_target_view_variable_AsBlend,
|
|
|
|
d3d10_effect_render_target_view_variable_AsDepthStencil,
|
|
|
|
d3d10_effect_render_target_view_variable_AsRasterizer,
|
|
|
|
d3d10_effect_render_target_view_variable_AsSampler,
|
|
|
|
d3d10_effect_render_target_view_variable_SetRawValue,
|
|
|
|
d3d10_effect_render_target_view_variable_GetRawValue,
|
|
|
|
/* ID3D10EffectRenderTargetViewVariable methods */
|
|
|
|
d3d10_effect_render_target_view_variable_SetRenderTarget,
|
|
|
|
d3d10_effect_render_target_view_variable_GetRenderTarget,
|
|
|
|
d3d10_effect_render_target_view_variable_SetRenderTargetArray,
|
|
|
|
d3d10_effect_render_target_view_variable_GetRenderTargetArray,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
|
2009-10-26 18:39:11 +01:00
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_IsValid(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface)
|
|
|
|
{
|
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
|
|
|
return (struct d3d10_effect_variable *)iface != &null_depth_stencil_view_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_GetType(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetType((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_GetDesc(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface, D3D10_EFFECT_VARIABLE_DESC *desc)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetDesc((ID3D10EffectVariable *)iface, desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_GetAnnotationByIndex(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_GetAnnotationByName(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_GetMemberByIndex(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_GetMemberByName(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_GetMemberBySemantic(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface, LPCSTR semantic)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberBySemantic((ID3D10EffectVariable *)iface, semantic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_GetElement(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetElement((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_GetParentConstantBuffer(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetParentConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectScalarVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_AsScalar(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsScalar((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVectorVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_AsVector(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsVector((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectMatrixVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_AsMatrix(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsMatrix((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectStringVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_AsString(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsString((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderResourceVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_AsShaderResource(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShaderResource((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRenderTargetViewVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_AsRenderTargetView(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRenderTargetView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilViewVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_AsDepthStencilView(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencilView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_AsConstantBuffer(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_AsShader(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShader((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectBlendVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_AsBlend(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsBlend((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_AsDepthStencil(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencil((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRasterizerVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_AsRasterizer(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRasterizer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectSamplerVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_AsSampler(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsSampler((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_SetRawValue(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface, void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_SetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_GetRawValue(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface, void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10EffectDepthStencilViewVariable methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_SetDepthStencil(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface, ID3D10DepthStencilView *view)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, view %p stub!\n", iface, view);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_GetDepthStencil(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface, ID3D10DepthStencilView **view)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, view %p stub!\n", iface, view);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_SetDepthStencilArray(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface, ID3D10DepthStencilView **views, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, views %p, offset %u, count %u stub!\n", iface, views, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_depth_stencil_view_variable_GetDepthStencilArray(
|
|
|
|
ID3D10EffectDepthStencilViewVariable *iface, ID3D10DepthStencilView **views, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, views %p, offset %u, count %u stub!\n", iface, views, offset, count);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const struct ID3D10EffectDepthStencilViewVariableVtbl d3d10_effect_depth_stencil_view_variable_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
d3d10_effect_depth_stencil_view_variable_IsValid,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_GetType,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_GetDesc,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_GetAnnotationByIndex,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_GetAnnotationByName,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_GetMemberByIndex,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_GetMemberByName,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_GetMemberBySemantic,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_GetElement,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_GetParentConstantBuffer,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_AsScalar,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_AsVector,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_AsMatrix,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_AsString,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_AsShaderResource,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_AsRenderTargetView,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_AsDepthStencilView,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_AsConstantBuffer,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_AsShader,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_AsBlend,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_AsDepthStencil,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_AsRasterizer,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_AsSampler,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_SetRawValue,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_GetRawValue,
|
|
|
|
/* ID3D10EffectDepthStencilViewVariable methods */
|
|
|
|
d3d10_effect_depth_stencil_view_variable_SetDepthStencil,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_GetDepthStencil,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_SetDepthStencilArray,
|
|
|
|
d3d10_effect_depth_stencil_view_variable_GetDepthStencilArray,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
|
2009-10-26 18:39:15 +01:00
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_shader_variable_IsValid(ID3D10EffectShaderVariable *iface)
|
|
|
|
{
|
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
|
|
|
return (struct d3d10_effect_variable *)iface != &null_shader_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_shader_variable_GetType(
|
|
|
|
ID3D10EffectShaderVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetType((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_shader_variable_GetDesc(ID3D10EffectShaderVariable *iface,
|
|
|
|
D3D10_EFFECT_VARIABLE_DESC *desc)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetDesc((ID3D10EffectVariable *)iface, desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_GetAnnotationByIndex(
|
|
|
|
ID3D10EffectShaderVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_GetAnnotationByName(
|
|
|
|
ID3D10EffectShaderVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_GetMemberByIndex(
|
|
|
|
ID3D10EffectShaderVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_GetMemberByName(
|
|
|
|
ID3D10EffectShaderVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_GetMemberBySemantic(
|
|
|
|
ID3D10EffectShaderVariable *iface, LPCSTR semantic)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberBySemantic((ID3D10EffectVariable *)iface, semantic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_GetElement(
|
|
|
|
ID3D10EffectShaderVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetElement((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_shader_variable_GetParentConstantBuffer(
|
|
|
|
ID3D10EffectShaderVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetParentConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectScalarVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_AsScalar(
|
|
|
|
ID3D10EffectShaderVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsScalar((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVectorVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_AsVector(
|
|
|
|
ID3D10EffectShaderVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsVector((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectMatrixVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_AsMatrix(
|
|
|
|
ID3D10EffectShaderVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsMatrix((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectStringVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_AsString(
|
|
|
|
ID3D10EffectShaderVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsString((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderResourceVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_AsShaderResource(
|
|
|
|
ID3D10EffectShaderVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShaderResource((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRenderTargetViewVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_AsRenderTargetView(
|
|
|
|
ID3D10EffectShaderVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRenderTargetView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilViewVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_AsDepthStencilView(
|
|
|
|
ID3D10EffectShaderVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencilView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_shader_variable_AsConstantBuffer(
|
|
|
|
ID3D10EffectShaderVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_AsShader(
|
|
|
|
ID3D10EffectShaderVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShader((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectBlendVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_AsBlend(
|
|
|
|
ID3D10EffectShaderVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsBlend((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_AsDepthStencil(
|
|
|
|
ID3D10EffectShaderVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencil((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRasterizerVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_AsRasterizer(
|
|
|
|
ID3D10EffectShaderVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRasterizer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectSamplerVariable * STDMETHODCALLTYPE d3d10_effect_shader_variable_AsSampler(
|
|
|
|
ID3D10EffectShaderVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsSampler((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_shader_variable_SetRawValue(
|
|
|
|
ID3D10EffectShaderVariable *iface, void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_SetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_shader_variable_GetRawValue(
|
|
|
|
ID3D10EffectShaderVariable *iface, void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10EffectShaderVariable methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_shader_variable_GetShaderDesc(
|
|
|
|
ID3D10EffectShaderVariable *iface, UINT index, D3D10_EFFECT_SHADER_DESC *desc)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, index %u, desc %p stub!\n", iface, index, desc);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_shader_variable_GetVertexShader(
|
|
|
|
ID3D10EffectShaderVariable *iface, UINT index, ID3D10VertexShader **shader)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, index %u, shader %p stub!\n", iface, index, shader);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_shader_variable_GetGeometryShader(
|
|
|
|
ID3D10EffectShaderVariable *iface, UINT index, ID3D10GeometryShader **shader)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, index %u, shader %p stub!\n", iface, index, shader);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_shader_variable_GetPixelShader(
|
|
|
|
ID3D10EffectShaderVariable *iface, UINT index, ID3D10PixelShader **shader)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, index %u, shader %p stub!\n", iface, index, shader);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_shader_variable_GetInputSignatureElementDesc(
|
|
|
|
ID3D10EffectShaderVariable *iface, UINT shader_index, UINT element_index,
|
|
|
|
D3D10_SIGNATURE_PARAMETER_DESC *desc)
|
|
|
|
{
|
2010-04-07 18:34:24 +02:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
|
|
|
struct d3d10_effect_shader_variable *s;
|
|
|
|
D3D10_SIGNATURE_PARAMETER_DESC *d;
|
|
|
|
|
|
|
|
TRACE("iface %p, shader_index %u, element_index %u, desc %p\n",
|
2009-10-26 18:39:15 +01:00
|
|
|
iface, shader_index, element_index, desc);
|
|
|
|
|
2010-04-07 18:34:24 +02:00
|
|
|
if (!iface->lpVtbl->IsValid(iface))
|
|
|
|
{
|
|
|
|
WARN("Null variable specified\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check shader_index, this crashes on W7/DX10 */
|
|
|
|
if (shader_index >= This->effect->used_shader_count)
|
|
|
|
{
|
|
|
|
WARN("This should crash on W7/DX10!\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
s = This->effect->used_shaders[shader_index]->data;
|
|
|
|
if (!s->input_signature.signature)
|
|
|
|
{
|
|
|
|
WARN("No shader signature\n");
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check desc for NULL, this crashes on W7/DX10 */
|
|
|
|
if (!desc)
|
|
|
|
{
|
|
|
|
WARN("This should crash on W7/DX10!\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (element_index >= s->input_signature.element_count)
|
|
|
|
{
|
|
|
|
WARN("Invalid element index specified\n");
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
d = &s->input_signature.elements[element_index];
|
|
|
|
desc->SemanticName = d->SemanticName;
|
|
|
|
desc->SemanticIndex = d->SemanticIndex;
|
|
|
|
desc->SystemValueType = d->SystemValueType;
|
|
|
|
desc->ComponentType = d->ComponentType;
|
|
|
|
desc->Register = d->Register;
|
|
|
|
desc->ReadWriteMask = d->ReadWriteMask;
|
|
|
|
desc->Mask = d->Mask;
|
|
|
|
|
|
|
|
return S_OK;
|
2009-10-26 18:39:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_shader_variable_GetOutputSignatureElementDesc(
|
|
|
|
ID3D10EffectShaderVariable *iface, UINT shader_index, UINT element_index,
|
|
|
|
D3D10_SIGNATURE_PARAMETER_DESC *desc)
|
|
|
|
{
|
2010-04-07 18:34:36 +02:00
|
|
|
struct d3d10_effect_variable *This = (struct d3d10_effect_variable *)iface;
|
|
|
|
struct d3d10_effect_shader_variable *s;
|
|
|
|
D3D10_SIGNATURE_PARAMETER_DESC *d;
|
|
|
|
|
|
|
|
TRACE("iface %p, shader_index %u, element_index %u, desc %p\n",
|
2009-10-26 18:39:15 +01:00
|
|
|
iface, shader_index, element_index, desc);
|
|
|
|
|
2010-04-07 18:34:36 +02:00
|
|
|
if (!iface->lpVtbl->IsValid(iface))
|
|
|
|
{
|
|
|
|
WARN("Null variable specified\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check shader_index, this crashes on W7/DX10 */
|
|
|
|
if (shader_index >= This->effect->used_shader_count)
|
|
|
|
{
|
|
|
|
WARN("This should crash on W7/DX10!\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
s = This->effect->used_shaders[shader_index]->data;
|
|
|
|
if (!s->output_signature.signature)
|
|
|
|
{
|
|
|
|
WARN("No shader signature\n");
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check desc for NULL, this crashes on W7/DX10 */
|
|
|
|
if (!desc)
|
|
|
|
{
|
|
|
|
WARN("This should crash on W7/DX10!\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (element_index >= s->output_signature.element_count)
|
|
|
|
{
|
|
|
|
WARN("Invalid element index specified\n");
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
d = &s->output_signature.elements[element_index];
|
|
|
|
desc->SemanticName = d->SemanticName;
|
|
|
|
desc->SemanticIndex = d->SemanticIndex;
|
|
|
|
desc->SystemValueType = d->SystemValueType;
|
|
|
|
desc->ComponentType = d->ComponentType;
|
|
|
|
desc->Register = d->Register;
|
|
|
|
desc->ReadWriteMask = d->ReadWriteMask;
|
|
|
|
desc->Mask = d->Mask;
|
|
|
|
|
|
|
|
return S_OK;
|
2009-10-26 18:39:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const struct ID3D10EffectShaderVariableVtbl d3d10_effect_shader_variable_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
d3d10_effect_shader_variable_IsValid,
|
|
|
|
d3d10_effect_shader_variable_GetType,
|
|
|
|
d3d10_effect_shader_variable_GetDesc,
|
|
|
|
d3d10_effect_shader_variable_GetAnnotationByIndex,
|
|
|
|
d3d10_effect_shader_variable_GetAnnotationByName,
|
|
|
|
d3d10_effect_shader_variable_GetMemberByIndex,
|
|
|
|
d3d10_effect_shader_variable_GetMemberByName,
|
|
|
|
d3d10_effect_shader_variable_GetMemberBySemantic,
|
|
|
|
d3d10_effect_shader_variable_GetElement,
|
|
|
|
d3d10_effect_shader_variable_GetParentConstantBuffer,
|
|
|
|
d3d10_effect_shader_variable_AsScalar,
|
|
|
|
d3d10_effect_shader_variable_AsVector,
|
|
|
|
d3d10_effect_shader_variable_AsMatrix,
|
|
|
|
d3d10_effect_shader_variable_AsString,
|
|
|
|
d3d10_effect_shader_variable_AsShaderResource,
|
|
|
|
d3d10_effect_shader_variable_AsRenderTargetView,
|
|
|
|
d3d10_effect_shader_variable_AsDepthStencilView,
|
|
|
|
d3d10_effect_shader_variable_AsConstantBuffer,
|
|
|
|
d3d10_effect_shader_variable_AsShader,
|
|
|
|
d3d10_effect_shader_variable_AsBlend,
|
|
|
|
d3d10_effect_shader_variable_AsDepthStencil,
|
|
|
|
d3d10_effect_shader_variable_AsRasterizer,
|
|
|
|
d3d10_effect_shader_variable_AsSampler,
|
|
|
|
d3d10_effect_shader_variable_SetRawValue,
|
|
|
|
d3d10_effect_shader_variable_GetRawValue,
|
|
|
|
/* ID3D10EffectShaderVariable methods */
|
|
|
|
d3d10_effect_shader_variable_GetShaderDesc,
|
|
|
|
d3d10_effect_shader_variable_GetVertexShader,
|
|
|
|
d3d10_effect_shader_variable_GetGeometryShader,
|
|
|
|
d3d10_effect_shader_variable_GetPixelShader,
|
|
|
|
d3d10_effect_shader_variable_GetInputSignatureElementDesc,
|
|
|
|
d3d10_effect_shader_variable_GetOutputSignatureElementDesc,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
|
2009-10-26 18:38:31 +01:00
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_blend_variable_IsValid(ID3D10EffectBlendVariable *iface)
|
|
|
|
{
|
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
|
|
|
return (struct d3d10_effect_variable *)iface != &null_blend_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_blend_variable_GetType(
|
|
|
|
ID3D10EffectBlendVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetType((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_blend_variable_GetDesc(ID3D10EffectBlendVariable *iface,
|
|
|
|
D3D10_EFFECT_VARIABLE_DESC *desc)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetDesc((ID3D10EffectVariable *)iface, desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_GetAnnotationByIndex(
|
|
|
|
ID3D10EffectBlendVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_GetAnnotationByName(
|
|
|
|
ID3D10EffectBlendVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_GetMemberByIndex(
|
|
|
|
ID3D10EffectBlendVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_GetMemberByName(
|
|
|
|
ID3D10EffectBlendVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_GetMemberBySemantic(
|
|
|
|
ID3D10EffectBlendVariable *iface, LPCSTR semantic)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberBySemantic((ID3D10EffectVariable *)iface, semantic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_GetElement(
|
|
|
|
ID3D10EffectBlendVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetElement((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_blend_variable_GetParentConstantBuffer(
|
|
|
|
ID3D10EffectBlendVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetParentConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectScalarVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_AsScalar(
|
|
|
|
ID3D10EffectBlendVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsScalar((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVectorVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_AsVector(
|
|
|
|
ID3D10EffectBlendVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsVector((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectMatrixVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_AsMatrix(
|
|
|
|
ID3D10EffectBlendVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsMatrix((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectStringVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_AsString(
|
|
|
|
ID3D10EffectBlendVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsString((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderResourceVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_AsShaderResource(
|
|
|
|
ID3D10EffectBlendVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShaderResource((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRenderTargetViewVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_AsRenderTargetView(
|
|
|
|
ID3D10EffectBlendVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRenderTargetView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilViewVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_AsDepthStencilView(
|
|
|
|
ID3D10EffectBlendVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencilView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_blend_variable_AsConstantBuffer(
|
|
|
|
ID3D10EffectBlendVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_AsShader(
|
|
|
|
ID3D10EffectBlendVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShader((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectBlendVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_AsBlend(
|
|
|
|
ID3D10EffectBlendVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsBlend((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_AsDepthStencil(
|
|
|
|
ID3D10EffectBlendVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencil((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRasterizerVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_AsRasterizer(
|
|
|
|
ID3D10EffectBlendVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRasterizer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectSamplerVariable * STDMETHODCALLTYPE d3d10_effect_blend_variable_AsSampler(
|
|
|
|
ID3D10EffectBlendVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsSampler((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_blend_variable_SetRawValue(ID3D10EffectBlendVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_SetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_blend_variable_GetRawValue(ID3D10EffectBlendVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10EffectBlendVariable methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_blend_variable_GetBlendState(ID3D10EffectBlendVariable *iface,
|
|
|
|
UINT index, ID3D10BlendState **blend_state)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, index %u, blend_state %p stub!\n", iface, index, blend_state);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_blend_variable_GetBackingStore(ID3D10EffectBlendVariable *iface,
|
|
|
|
UINT index, D3D10_BLEND_DESC *desc)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, index %u, desc %p stub!\n", iface, index, desc);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const struct ID3D10EffectBlendVariableVtbl d3d10_effect_blend_variable_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
d3d10_effect_blend_variable_IsValid,
|
|
|
|
d3d10_effect_blend_variable_GetType,
|
|
|
|
d3d10_effect_blend_variable_GetDesc,
|
|
|
|
d3d10_effect_blend_variable_GetAnnotationByIndex,
|
|
|
|
d3d10_effect_blend_variable_GetAnnotationByName,
|
|
|
|
d3d10_effect_blend_variable_GetMemberByIndex,
|
|
|
|
d3d10_effect_blend_variable_GetMemberByName,
|
|
|
|
d3d10_effect_blend_variable_GetMemberBySemantic,
|
|
|
|
d3d10_effect_blend_variable_GetElement,
|
|
|
|
d3d10_effect_blend_variable_GetParentConstantBuffer,
|
|
|
|
d3d10_effect_blend_variable_AsScalar,
|
|
|
|
d3d10_effect_blend_variable_AsVector,
|
|
|
|
d3d10_effect_blend_variable_AsMatrix,
|
|
|
|
d3d10_effect_blend_variable_AsString,
|
|
|
|
d3d10_effect_blend_variable_AsShaderResource,
|
|
|
|
d3d10_effect_blend_variable_AsRenderTargetView,
|
|
|
|
d3d10_effect_blend_variable_AsDepthStencilView,
|
|
|
|
d3d10_effect_blend_variable_AsConstantBuffer,
|
|
|
|
d3d10_effect_blend_variable_AsShader,
|
|
|
|
d3d10_effect_blend_variable_AsBlend,
|
|
|
|
d3d10_effect_blend_variable_AsDepthStencil,
|
|
|
|
d3d10_effect_blend_variable_AsRasterizer,
|
|
|
|
d3d10_effect_blend_variable_AsSampler,
|
|
|
|
d3d10_effect_blend_variable_SetRawValue,
|
|
|
|
d3d10_effect_blend_variable_GetRawValue,
|
|
|
|
/* ID3D10EffectBlendVariable methods */
|
|
|
|
d3d10_effect_blend_variable_GetBlendState,
|
|
|
|
d3d10_effect_blend_variable_GetBackingStore,
|
|
|
|
};
|
|
|
|
|
2009-10-26 18:38:46 +01:00
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
|
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_IsValid(ID3D10EffectDepthStencilVariable *iface)
|
|
|
|
{
|
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
|
|
|
return (struct d3d10_effect_variable *)iface != &null_depth_stencil_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_GetType(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetType((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_GetDesc(ID3D10EffectDepthStencilVariable *iface,
|
|
|
|
D3D10_EFFECT_VARIABLE_DESC *desc)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetDesc((ID3D10EffectVariable *)iface, desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_GetAnnotationByIndex(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_GetAnnotationByName(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_GetMemberByIndex(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_GetMemberByName(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_GetMemberBySemantic(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface, LPCSTR semantic)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberBySemantic((ID3D10EffectVariable *)iface, semantic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_GetElement(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetElement((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_GetParentConstantBuffer(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetParentConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectScalarVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_AsScalar(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsScalar((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVectorVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_AsVector(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsVector((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectMatrixVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_AsMatrix(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsMatrix((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectStringVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_AsString(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsString((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderResourceVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_AsShaderResource(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShaderResource((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRenderTargetViewVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_AsRenderTargetView(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRenderTargetView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilViewVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_AsDepthStencilView(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencilView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_AsConstantBuffer(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_AsShader(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShader((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectBlendVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_AsBlend(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsBlend((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_AsDepthStencil(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencil((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRasterizerVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_AsRasterizer(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRasterizer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectSamplerVariable * STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_AsSampler(
|
|
|
|
ID3D10EffectDepthStencilVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsSampler((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_SetRawValue(ID3D10EffectDepthStencilVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_SetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_GetRawValue(ID3D10EffectDepthStencilVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10EffectDepthStencilVariable methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_GetDepthStencilState(ID3D10EffectDepthStencilVariable *iface,
|
|
|
|
UINT index, ID3D10DepthStencilState **depth_stencil_state)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, index %u, depth_stencil_state %p stub!\n", iface, index, depth_stencil_state);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_depth_stencil_variable_GetBackingStore(ID3D10EffectDepthStencilVariable *iface,
|
|
|
|
UINT index, D3D10_DEPTH_STENCIL_DESC *desc)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, index %u, desc %p stub!\n", iface, index, desc);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const struct ID3D10EffectDepthStencilVariableVtbl d3d10_effect_depth_stencil_variable_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
d3d10_effect_depth_stencil_variable_IsValid,
|
|
|
|
d3d10_effect_depth_stencil_variable_GetType,
|
|
|
|
d3d10_effect_depth_stencil_variable_GetDesc,
|
|
|
|
d3d10_effect_depth_stencil_variable_GetAnnotationByIndex,
|
|
|
|
d3d10_effect_depth_stencil_variable_GetAnnotationByName,
|
|
|
|
d3d10_effect_depth_stencil_variable_GetMemberByIndex,
|
|
|
|
d3d10_effect_depth_stencil_variable_GetMemberByName,
|
|
|
|
d3d10_effect_depth_stencil_variable_GetMemberBySemantic,
|
|
|
|
d3d10_effect_depth_stencil_variable_GetElement,
|
|
|
|
d3d10_effect_depth_stencil_variable_GetParentConstantBuffer,
|
|
|
|
d3d10_effect_depth_stencil_variable_AsScalar,
|
|
|
|
d3d10_effect_depth_stencil_variable_AsVector,
|
|
|
|
d3d10_effect_depth_stencil_variable_AsMatrix,
|
|
|
|
d3d10_effect_depth_stencil_variable_AsString,
|
|
|
|
d3d10_effect_depth_stencil_variable_AsShaderResource,
|
|
|
|
d3d10_effect_depth_stencil_variable_AsRenderTargetView,
|
|
|
|
d3d10_effect_depth_stencil_variable_AsDepthStencilView,
|
|
|
|
d3d10_effect_depth_stencil_variable_AsConstantBuffer,
|
|
|
|
d3d10_effect_depth_stencil_variable_AsShader,
|
|
|
|
d3d10_effect_depth_stencil_variable_AsBlend,
|
|
|
|
d3d10_effect_depth_stencil_variable_AsDepthStencil,
|
|
|
|
d3d10_effect_depth_stencil_variable_AsRasterizer,
|
|
|
|
d3d10_effect_depth_stencil_variable_AsSampler,
|
|
|
|
d3d10_effect_depth_stencil_variable_SetRawValue,
|
|
|
|
d3d10_effect_depth_stencil_variable_GetRawValue,
|
|
|
|
/* ID3D10EffectDepthStencilVariable methods */
|
|
|
|
d3d10_effect_depth_stencil_variable_GetDepthStencilState,
|
|
|
|
d3d10_effect_depth_stencil_variable_GetBackingStore,
|
|
|
|
};
|
|
|
|
|
2009-10-26 18:38:50 +01:00
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
|
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_IsValid(ID3D10EffectRasterizerVariable *iface)
|
|
|
|
{
|
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
|
|
|
return (struct d3d10_effect_variable *)iface != &null_rasterizer_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_GetType(
|
|
|
|
ID3D10EffectRasterizerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetType((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_GetDesc(ID3D10EffectRasterizerVariable *iface,
|
|
|
|
D3D10_EFFECT_VARIABLE_DESC *desc)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetDesc((ID3D10EffectVariable *)iface, desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_GetAnnotationByIndex(
|
|
|
|
ID3D10EffectRasterizerVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_GetAnnotationByName(
|
|
|
|
ID3D10EffectRasterizerVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_GetMemberByIndex(
|
|
|
|
ID3D10EffectRasterizerVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_GetMemberByName(
|
|
|
|
ID3D10EffectRasterizerVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_GetMemberBySemantic(
|
|
|
|
ID3D10EffectRasterizerVariable *iface, LPCSTR semantic)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberBySemantic((ID3D10EffectVariable *)iface, semantic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_GetElement(
|
|
|
|
ID3D10EffectRasterizerVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetElement((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_GetParentConstantBuffer(
|
|
|
|
ID3D10EffectRasterizerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetParentConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectScalarVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_AsScalar(
|
|
|
|
ID3D10EffectRasterizerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsScalar((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVectorVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_AsVector(
|
|
|
|
ID3D10EffectRasterizerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsVector((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectMatrixVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_AsMatrix(
|
|
|
|
ID3D10EffectRasterizerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsMatrix((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectStringVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_AsString(
|
|
|
|
ID3D10EffectRasterizerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsString((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderResourceVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_AsShaderResource(
|
|
|
|
ID3D10EffectRasterizerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShaderResource((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRenderTargetViewVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_AsRenderTargetView(
|
|
|
|
ID3D10EffectRasterizerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRenderTargetView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilViewVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_AsDepthStencilView(
|
|
|
|
ID3D10EffectRasterizerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencilView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_AsConstantBuffer(
|
|
|
|
ID3D10EffectRasterizerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_AsShader(
|
|
|
|
ID3D10EffectRasterizerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShader((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectBlendVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_AsBlend(
|
|
|
|
ID3D10EffectRasterizerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsBlend((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_AsDepthStencil(
|
|
|
|
ID3D10EffectRasterizerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencil((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRasterizerVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_AsRasterizer(
|
|
|
|
ID3D10EffectRasterizerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRasterizer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectSamplerVariable * STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_AsSampler(
|
|
|
|
ID3D10EffectRasterizerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsSampler((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_SetRawValue(ID3D10EffectRasterizerVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_SetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_GetRawValue(ID3D10EffectRasterizerVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10EffectRasterizerVariable methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_GetRasterizerState(ID3D10EffectRasterizerVariable *iface,
|
|
|
|
UINT index, ID3D10RasterizerState **rasterizer_state)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, index %u, rasterizer_state %p stub!\n", iface, index, rasterizer_state);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_rasterizer_variable_GetBackingStore(ID3D10EffectRasterizerVariable *iface,
|
|
|
|
UINT index, D3D10_RASTERIZER_DESC *desc)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, index %u, desc %p stub!\n", iface, index, desc);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const struct ID3D10EffectRasterizerVariableVtbl d3d10_effect_rasterizer_variable_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
d3d10_effect_rasterizer_variable_IsValid,
|
|
|
|
d3d10_effect_rasterizer_variable_GetType,
|
|
|
|
d3d10_effect_rasterizer_variable_GetDesc,
|
|
|
|
d3d10_effect_rasterizer_variable_GetAnnotationByIndex,
|
|
|
|
d3d10_effect_rasterizer_variable_GetAnnotationByName,
|
|
|
|
d3d10_effect_rasterizer_variable_GetMemberByIndex,
|
|
|
|
d3d10_effect_rasterizer_variable_GetMemberByName,
|
|
|
|
d3d10_effect_rasterizer_variable_GetMemberBySemantic,
|
|
|
|
d3d10_effect_rasterizer_variable_GetElement,
|
|
|
|
d3d10_effect_rasterizer_variable_GetParentConstantBuffer,
|
|
|
|
d3d10_effect_rasterizer_variable_AsScalar,
|
|
|
|
d3d10_effect_rasterizer_variable_AsVector,
|
|
|
|
d3d10_effect_rasterizer_variable_AsMatrix,
|
|
|
|
d3d10_effect_rasterizer_variable_AsString,
|
|
|
|
d3d10_effect_rasterizer_variable_AsShaderResource,
|
|
|
|
d3d10_effect_rasterizer_variable_AsRenderTargetView,
|
|
|
|
d3d10_effect_rasterizer_variable_AsDepthStencilView,
|
|
|
|
d3d10_effect_rasterizer_variable_AsConstantBuffer,
|
|
|
|
d3d10_effect_rasterizer_variable_AsShader,
|
|
|
|
d3d10_effect_rasterizer_variable_AsBlend,
|
|
|
|
d3d10_effect_rasterizer_variable_AsDepthStencil,
|
|
|
|
d3d10_effect_rasterizer_variable_AsRasterizer,
|
|
|
|
d3d10_effect_rasterizer_variable_AsSampler,
|
|
|
|
d3d10_effect_rasterizer_variable_SetRawValue,
|
|
|
|
d3d10_effect_rasterizer_variable_GetRawValue,
|
|
|
|
/* ID3D10EffectRasterizerVariable methods */
|
|
|
|
d3d10_effect_rasterizer_variable_GetRasterizerState,
|
|
|
|
d3d10_effect_rasterizer_variable_GetBackingStore,
|
|
|
|
};
|
|
|
|
|
2009-10-26 18:38:53 +01:00
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
|
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_sampler_variable_IsValid(ID3D10EffectSamplerVariable *iface)
|
|
|
|
{
|
|
|
|
TRACE("iface %p\n", iface);
|
|
|
|
|
|
|
|
return (struct d3d10_effect_variable *)iface != &null_sampler_variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_sampler_variable_GetType(
|
|
|
|
ID3D10EffectSamplerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetType((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_sampler_variable_GetDesc(ID3D10EffectSamplerVariable *iface,
|
|
|
|
D3D10_EFFECT_VARIABLE_DESC *desc)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetDesc((ID3D10EffectVariable *)iface, desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_GetAnnotationByIndex(
|
|
|
|
ID3D10EffectSamplerVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_GetAnnotationByName(
|
|
|
|
ID3D10EffectSamplerVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetAnnotationByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_GetMemberByIndex(
|
|
|
|
ID3D10EffectSamplerVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByIndex((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_GetMemberByName(
|
|
|
|
ID3D10EffectSamplerVariable *iface, LPCSTR name)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberByName((ID3D10EffectVariable *)iface, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_GetMemberBySemantic(
|
|
|
|
ID3D10EffectSamplerVariable *iface, LPCSTR semantic)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetMemberBySemantic((ID3D10EffectVariable *)iface, semantic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_GetElement(
|
|
|
|
ID3D10EffectSamplerVariable *iface, UINT index)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetElement((ID3D10EffectVariable *)iface, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_sampler_variable_GetParentConstantBuffer(
|
|
|
|
ID3D10EffectSamplerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetParentConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectScalarVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_AsScalar(
|
|
|
|
ID3D10EffectSamplerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsScalar((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectVectorVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_AsVector(
|
|
|
|
ID3D10EffectSamplerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsVector((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectMatrixVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_AsMatrix(
|
|
|
|
ID3D10EffectSamplerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsMatrix((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectStringVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_AsString(
|
|
|
|
ID3D10EffectSamplerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsString((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderResourceVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_AsShaderResource(
|
|
|
|
ID3D10EffectSamplerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShaderResource((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRenderTargetViewVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_AsRenderTargetView(
|
|
|
|
ID3D10EffectSamplerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRenderTargetView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilViewVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_AsDepthStencilView(
|
|
|
|
ID3D10EffectSamplerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencilView((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectConstantBuffer * STDMETHODCALLTYPE d3d10_effect_sampler_variable_AsConstantBuffer(
|
|
|
|
ID3D10EffectSamplerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsConstantBuffer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectShaderVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_AsShader(
|
|
|
|
ID3D10EffectSamplerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsShader((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectBlendVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_AsBlend(
|
|
|
|
ID3D10EffectSamplerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsBlend((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectDepthStencilVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_AsDepthStencil(
|
|
|
|
ID3D10EffectSamplerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsDepthStencil((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectRasterizerVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_AsRasterizer(
|
|
|
|
ID3D10EffectSamplerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsRasterizer((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectSamplerVariable * STDMETHODCALLTYPE d3d10_effect_sampler_variable_AsSampler(
|
|
|
|
ID3D10EffectSamplerVariable *iface)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_AsSampler((ID3D10EffectVariable *)iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_sampler_variable_SetRawValue(ID3D10EffectSamplerVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_SetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_sampler_variable_GetRawValue(ID3D10EffectSamplerVariable *iface,
|
|
|
|
void *data, UINT offset, UINT count)
|
|
|
|
{
|
|
|
|
return d3d10_effect_variable_GetRawValue((ID3D10EffectVariable *)iface, data, offset, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ID3D10EffectSamplerVariable methods */
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_sampler_variable_GetSampler(ID3D10EffectSamplerVariable *iface,
|
|
|
|
UINT index, ID3D10SamplerState **sampler)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, index %u, sampler %p stub!\n", iface, index, sampler);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_sampler_variable_GetBackingStore(ID3D10EffectSamplerVariable *iface,
|
|
|
|
UINT index, D3D10_SAMPLER_DESC *desc)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, index %u, desc %p stub!\n", iface, index, desc);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const struct ID3D10EffectSamplerVariableVtbl d3d10_effect_sampler_variable_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectVariable methods */
|
|
|
|
d3d10_effect_sampler_variable_IsValid,
|
|
|
|
d3d10_effect_sampler_variable_GetType,
|
|
|
|
d3d10_effect_sampler_variable_GetDesc,
|
|
|
|
d3d10_effect_sampler_variable_GetAnnotationByIndex,
|
|
|
|
d3d10_effect_sampler_variable_GetAnnotationByName,
|
|
|
|
d3d10_effect_sampler_variable_GetMemberByIndex,
|
|
|
|
d3d10_effect_sampler_variable_GetMemberByName,
|
|
|
|
d3d10_effect_sampler_variable_GetMemberBySemantic,
|
|
|
|
d3d10_effect_sampler_variable_GetElement,
|
|
|
|
d3d10_effect_sampler_variable_GetParentConstantBuffer,
|
|
|
|
d3d10_effect_sampler_variable_AsScalar,
|
|
|
|
d3d10_effect_sampler_variable_AsVector,
|
|
|
|
d3d10_effect_sampler_variable_AsMatrix,
|
|
|
|
d3d10_effect_sampler_variable_AsString,
|
|
|
|
d3d10_effect_sampler_variable_AsShaderResource,
|
|
|
|
d3d10_effect_sampler_variable_AsRenderTargetView,
|
|
|
|
d3d10_effect_sampler_variable_AsDepthStencilView,
|
|
|
|
d3d10_effect_sampler_variable_AsConstantBuffer,
|
|
|
|
d3d10_effect_sampler_variable_AsShader,
|
|
|
|
d3d10_effect_sampler_variable_AsBlend,
|
|
|
|
d3d10_effect_sampler_variable_AsDepthStencil,
|
|
|
|
d3d10_effect_sampler_variable_AsRasterizer,
|
|
|
|
d3d10_effect_sampler_variable_AsSampler,
|
|
|
|
d3d10_effect_sampler_variable_SetRawValue,
|
|
|
|
d3d10_effect_sampler_variable_GetRawValue,
|
|
|
|
/* ID3D10EffectSamplerVariable methods */
|
|
|
|
d3d10_effect_sampler_variable_GetSampler,
|
|
|
|
d3d10_effect_sampler_variable_GetBackingStore,
|
|
|
|
};
|
|
|
|
|
2009-10-26 18:38:31 +01:00
|
|
|
/* ID3D10EffectType methods */
|
|
|
|
|
2009-09-08 16:38:00 +02:00
|
|
|
static BOOL STDMETHODCALLTYPE d3d10_effect_type_IsValid(ID3D10EffectType *iface)
|
|
|
|
{
|
2010-01-24 14:26:39 +01:00
|
|
|
TRACE("iface %p\n", iface);
|
2009-09-08 16:38:00 +02:00
|
|
|
|
2010-01-24 14:26:39 +01:00
|
|
|
return (struct d3d10_effect_type *)iface != &null_type;
|
2009-09-08 16:38:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE d3d10_effect_type_GetDesc(ID3D10EffectType *iface, D3D10_EFFECT_TYPE_DESC *desc)
|
|
|
|
{
|
2009-09-08 16:38:01 +02:00
|
|
|
struct d3d10_effect_type *This = (struct d3d10_effect_type *)iface;
|
2009-09-08 16:38:00 +02:00
|
|
|
|
2009-09-08 16:38:01 +02:00
|
|
|
TRACE("iface %p, desc %p\n", iface, desc);
|
|
|
|
|
2009-10-01 11:53:57 +02:00
|
|
|
if (This == &null_type)
|
|
|
|
{
|
|
|
|
WARN("Null type specified\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!desc)
|
|
|
|
{
|
|
|
|
WARN("Invalid argument specified\n");
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
2009-09-08 16:38:01 +02:00
|
|
|
|
|
|
|
desc->TypeName = This->name;
|
|
|
|
desc->Class = This->type_class;
|
|
|
|
desc->Type = This->basetype;
|
|
|
|
desc->Elements = This->element_count;
|
|
|
|
desc->Members = This->member_count;
|
|
|
|
desc->Rows = This->row_count;
|
|
|
|
desc->Columns = This->column_count;
|
|
|
|
desc->PackedSize = This->size_packed;
|
|
|
|
desc->UnpackedSize = This->size_unpacked;
|
|
|
|
desc->Stride = This->stride;
|
|
|
|
|
|
|
|
return S_OK;
|
2009-09-08 16:38:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_type_GetMemberTypeByIndex(ID3D10EffectType *iface,
|
|
|
|
UINT index)
|
|
|
|
{
|
2009-10-01 11:54:33 +02:00
|
|
|
struct d3d10_effect_type *This = (struct d3d10_effect_type *)iface;
|
|
|
|
struct d3d10_effect_type *t;
|
2009-09-08 16:38:00 +02:00
|
|
|
|
2009-10-01 11:54:33 +02:00
|
|
|
TRACE("iface %p, index %u\n", iface, index);
|
|
|
|
|
|
|
|
if (index >= This->member_count)
|
|
|
|
{
|
|
|
|
WARN("Invalid index specified\n");
|
|
|
|
return (ID3D10EffectType *)&null_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
t = (&This->members[index])->type;
|
|
|
|
|
|
|
|
TRACE("Returning member %p, %s\n", t, debugstr_a(t->name));
|
|
|
|
|
|
|
|
return (ID3D10EffectType *)t;
|
2009-09-08 16:38:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_type_GetMemberTypeByName(ID3D10EffectType *iface,
|
|
|
|
LPCSTR name)
|
|
|
|
{
|
2009-10-01 11:54:51 +02:00
|
|
|
struct d3d10_effect_type *This = (struct d3d10_effect_type *)iface;
|
|
|
|
unsigned int i;
|
2009-09-08 16:38:00 +02:00
|
|
|
|
2009-10-01 11:54:51 +02:00
|
|
|
TRACE("iface %p, name %s\n", iface, debugstr_a(name));
|
|
|
|
|
|
|
|
if (!name)
|
|
|
|
{
|
|
|
|
WARN("Invalid name specified\n");
|
|
|
|
return (ID3D10EffectType *)&null_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < This->member_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_type_member *typem = &This->members[i];
|
|
|
|
|
|
|
|
if (typem->name)
|
|
|
|
{
|
|
|
|
if (!strcmp(typem->name, name))
|
|
|
|
{
|
|
|
|
TRACE("Returning type %p.\n", typem->type);
|
|
|
|
return (ID3D10EffectType *)typem->type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("Invalid name specified\n");
|
|
|
|
|
|
|
|
return (ID3D10EffectType *)&null_type;
|
2009-09-08 16:38:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ID3D10EffectType * STDMETHODCALLTYPE d3d10_effect_type_GetMemberTypeBySemantic(ID3D10EffectType *iface,
|
|
|
|
LPCSTR semantic)
|
|
|
|
{
|
2009-10-01 11:55:16 +02:00
|
|
|
struct d3d10_effect_type *This = (struct d3d10_effect_type *)iface;
|
|
|
|
unsigned int i;
|
2009-09-08 16:38:00 +02:00
|
|
|
|
2009-10-01 11:55:16 +02:00
|
|
|
TRACE("iface %p, semantic %s\n", iface, debugstr_a(semantic));
|
|
|
|
|
|
|
|
if (!semantic)
|
|
|
|
{
|
|
|
|
WARN("Invalid semantic specified\n");
|
|
|
|
return (ID3D10EffectType *)&null_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < This->member_count; ++i)
|
|
|
|
{
|
|
|
|
struct d3d10_effect_type_member *typem = &This->members[i];
|
|
|
|
|
|
|
|
if (typem->semantic)
|
|
|
|
{
|
|
|
|
if (!strcmp(typem->semantic, semantic))
|
|
|
|
{
|
|
|
|
TRACE("Returning type %p.\n", typem->type);
|
|
|
|
return (ID3D10EffectType *)typem->type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("Invalid semantic specified\n");
|
|
|
|
|
|
|
|
return (ID3D10EffectType *)&null_type;
|
2009-09-08 16:38:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static LPCSTR STDMETHODCALLTYPE d3d10_effect_type_GetMemberName(ID3D10EffectType *iface, UINT index)
|
|
|
|
{
|
2009-09-30 11:42:14 +02:00
|
|
|
struct d3d10_effect_type *This = (struct d3d10_effect_type *)iface;
|
2009-10-01 11:53:53 +02:00
|
|
|
struct d3d10_effect_type_member *typem;
|
2009-09-08 16:38:00 +02:00
|
|
|
|
2009-09-30 11:42:14 +02:00
|
|
|
TRACE("iface %p, index %u\n", iface, index);
|
|
|
|
|
2009-10-01 11:53:53 +02:00
|
|
|
if (index >= This->member_count)
|
|
|
|
{
|
|
|
|
WARN("Invalid index specified\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
typem = &This->members[index];
|
|
|
|
|
|
|
|
TRACE("Returning name %s\n", debugstr_a(typem->name));
|
2009-09-30 11:42:14 +02:00
|
|
|
|
2009-10-01 11:53:53 +02:00
|
|
|
return typem->name;
|
2009-09-08 16:38:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static LPCSTR STDMETHODCALLTYPE d3d10_effect_type_GetMemberSemantic(ID3D10EffectType *iface, UINT index)
|
|
|
|
{
|
2009-10-01 11:53:34 +02:00
|
|
|
struct d3d10_effect_type *This = (struct d3d10_effect_type *)iface;
|
|
|
|
struct d3d10_effect_type_member *typem;
|
2009-09-08 16:38:00 +02:00
|
|
|
|
2009-10-01 11:53:34 +02:00
|
|
|
TRACE("iface %p, index %u\n", iface, index);
|
|
|
|
|
|
|
|
if (index >= This->member_count)
|
|
|
|
{
|
|
|
|
WARN("Invalid index specified\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
typem = &This->members[index];
|
|
|
|
|
|
|
|
TRACE("Returning semantic %s\n", debugstr_a(typem->semantic));
|
|
|
|
|
|
|
|
return typem->semantic;
|
2009-09-08 16:38:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3D10EffectTypeVtbl d3d10_effect_type_vtbl =
|
|
|
|
{
|
|
|
|
/* ID3D10EffectType */
|
|
|
|
d3d10_effect_type_IsValid,
|
|
|
|
d3d10_effect_type_GetDesc,
|
|
|
|
d3d10_effect_type_GetMemberTypeByIndex,
|
|
|
|
d3d10_effect_type_GetMemberTypeByName,
|
|
|
|
d3d10_effect_type_GetMemberTypeBySemantic,
|
|
|
|
d3d10_effect_type_GetMemberName,
|
|
|
|
d3d10_effect_type_GetMemberSemantic,
|
|
|
|
};
|