SOL9 2.0 Class: Direct3DX11EffectSamplerVariable
|
Source code
/******************************************************************************
*
* Copyright (c) 2015 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions, and the following disclaimer.
*
* 2. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
* Direct3DX11EffectSamplerVariable.h
*
*****************************************************************************/
#pragma once
#include <sol/direct3d11/Direct3DX11EffectVariable.h>
namespace SOL {
class Direct3DX11EffectSamplerVariable :public Direct3DX11EffectVariable {
public:
Direct3DX11EffectSamplerVariable(ID3DX11EffectSamplerVariable* variable)
:Direct3DX11EffectVariable()
{
if (variable) {
set(variable);
} else {
throw IException("Invalid argument. ID3DX11EffectSamplerVariable is NULL.");
}
}
~Direct3DX11EffectSamplerVariable()
{
}
operator ID3DX11EffectSamplerVariable*()
{
return getSamplerVariable();
}
ID3DX11EffectSamplerVariable* getSamplerVariable()
{
ID3DX11EffectSamplerVariable* variable = (ID3DX11EffectSamplerVariable*)getInterface();
if (variable) {
return variable;
} else {
throw IException("ID3DX11EffectSamplerVariable is NULL.");
}
}
ID3DX11EffectType* getType()
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> GetType();
}
void getDesc(D3DX11_EFFECT_VARIABLE_DESC *pDesc)
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
HRESULT hr = variable -> GetDesc(pDesc);
if (FAILED(hr)) {
throw IException("Failed to GetDesc. HRESULT(0x%lx9)", hr);
}
}
void getDesc(D3DX11_EFFECT_VARIABLE_DESC& desc)
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
HRESULT hr = variable -> GetDesc(&desc);
if (FAILED(hr)) {
throw IException("Failed to GetDesc. HRESULT(0x%lx9)", hr);
}
}
ID3DX11EffectVariable* getAnnotationByIndex(UINT index)
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> GetAnnotationByIndex(index);
}
ID3DX11EffectVariable* getAnnotationByName(LPCSTR name)
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> GetAnnotationByName(name);
}
ID3DX11EffectVariable* getMemberByIndex(UINT index)
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> GetMemberByIndex(index);
}
ID3DX11EffectVariable* getMemberByName(LPCSTR name)
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> GetMemberByName(name);
}
ID3DX11EffectVariable* getMemberBySemantic(LPCSTR semantic)
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> GetMemberBySemantic(semantic);
}
ID3DX11EffectVariable* getElement(UINT index)
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> GetElement(index);
}
ID3DX11EffectConstantBuffer* getParentConstantBuffer()
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> GetParentConstantBuffer();
}
ID3DX11EffectScalarVariable* asScalar()
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> AsScalar();
}
ID3DX11EffectVectorVariable* asVector()
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> AsVector();
}
ID3DX11EffectMatrixVariable* asMatrix()
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> AsMatrix();
}
ID3DX11EffectStringVariable* asString()
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> AsString();
}
ID3DX11EffectShaderResourceVariable* asShaderResource()
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> AsShaderResource();
}
ID3DX11EffectRenderTargetViewVariable* asRenderTargetView()
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> AsRenderTargetView();
}
ID3DX11EffectDepthStencilViewVariable* asDepthStencilView()
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> AsDepthStencilView();
}
ID3DX11EffectConstantBuffer* asConstantBuffer()
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> AsConstantBuffer();
}
ID3DX11EffectShaderVariable* asShader()
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> AsShader();
}
ID3DX11EffectBlendVariable* asBlend()
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> AsBlend();
}
ID3DX11EffectDepthStencilVariable* asDepthStencil()
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> AsDepthStencil();
}
ID3DX11EffectRasterizerVariable* asRasterizer()
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> AsRasterizer();
}
ID3DX11EffectSamplerVariable* asSampler()
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
return variable -> AsSampler();
}
void setRawValue(void *pData, UINT offset, UINT count)
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
HRESULT hr = variable -> SetRawValue(pData, offset, count);
if (FAILED(hr)) {
throw IException("Failed to SetRawValue. HRESULT(0x%lx9)", hr);
}
}
void getRawValue(void *pData, UINT offset, UINT count)
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
HRESULT hr = variable -> GetRawValue(pData, offset, count);
if (FAILED(hr)) {
throw IException("Failed to GetRawValue. HRESULT(0x%lx9)", hr);
}
}
void getSampler(UINT index, ID3D11SamplerState **ppSampler)
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
HRESULT hr = variable -> GetSampler(index, ppSampler);
if (FAILED(hr)) {
throw IException("Failed to GetSampler. HRESULT(0x%lx9)", hr);
}
}
void getBackingStore(UINT index, D3D11_SAMPLER_DESC *pSamplerDesc)
{
ID3DX11EffectSamplerVariable* variable = getSamplerVariable();
HRESULT hr = variable ->GetBackingStore(index, pSamplerDesc);
if (FAILED(hr)) {
throw IException("Failed to GetBackingStore. HRESULT(0x%lx9)", hr);
}
}
};
}
Last modified: 5 May 2019
Copyright (c) 2009-2019 Antillia.com ALL RIGHTS RESERVED.