2013-05-05 18:18:41 +02:00
|
|
|
/********************************************************
|
|
|
|
* EffectParameter.h *
|
|
|
|
* *
|
|
|
|
* XFX::Graphics::EffectParameter definition file *
|
2013-06-02 14:32:43 +02:00
|
|
|
* Copyright (c) XFX Team. All Rights Reserved *
|
2013-05-05 18:18:41 +02:00
|
|
|
********************************************************/
|
|
|
|
#ifndef _XFX_GRAPHICS_EFFECTPARAMETER_
|
|
|
|
#define _XFX_GRAPHICS_EFFECTPARAMETER_
|
|
|
|
|
|
|
|
#include <System/Object.h>
|
|
|
|
|
2013-07-11 20:00:07 +02:00
|
|
|
using namespace System;
|
|
|
|
|
2013-05-05 18:18:41 +02:00
|
|
|
namespace XFX
|
|
|
|
{
|
|
|
|
namespace Graphics
|
|
|
|
{
|
|
|
|
// Represents an Effect parameter.
|
|
|
|
class EffectParameter : public Object
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int GetType() const;
|
|
|
|
|
|
|
|
bool GetValueBoolean() const;
|
|
|
|
bool* GetValueBooleanArray(int count) const;
|
|
|
|
int GetValueInt32() const;
|
|
|
|
int* GetValueInt32Array(int count) const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //_XFX_GRAPHICS_EFFECTPARAMETER_
|