#include <gpu_resource.h>

Public Member Functions | |
| virtual size_t | getActualLengthGPU () const |
| const std::string & | getClassName () const |
| Returns name of class of our object. | |
| virtual size_t | getComponentSize () const |
| virtual int | getDimension () const |
| virtual size_t | getNumberOfComponents () const |
| const std::string & | getObjectName () const |
| Returns name of our object. | |
| virtual int | getSizeX () const |
| virtual int | getSizeY () const |
| virtual int | getSizeZ () const |
| void | getSpecificParameter (const std::string &ParameterName, void *ParameterValue) |
| Method for obtaining some specific parameters, such as texture specific params, and so on. | |
| virtual size_t | getTypeSize () const |
| GPUResource (const std::string &ClassName, const std::string &ObjectName) | |
| virtual void | initialize ()=0 |
| virtual bool | isInitialized () const =0 |
| bool | isLocked () const |
| returns state of object. | |
| virtual bool | isUploadedToGPU () const =0 |
| virtual void | uploadToGPU ()=0 |
| virtual | ~GPUResource () |
Protected Member Functions | |
| void | addSpecificParameter (const std::string &ParameterName, void *ParameterValue, size_t Size) |
| void | lock () |
| void | unlock () |
Protected Attributes | |
| size_t | mActualLengthGPU |
| size_t | mComponentSize |
| size_t | mDimension |
| size_t | mNumberOfComponents |
| size_t | mSizeX |
| size_t | mSizeY |
| size_t | mSizeZ |
| size_t | mTypeSize |
Definition at line 42 of file gpu_resource.h.
| gpucalc::GPUResource::GPUResource | ( | const std::string & | ClassName, | |
| const std::string & | ObjectName | |||
| ) | [inline] |
Definition at line 51 of file gpu_resource.h.
00051 : Object(ClassName, ObjectName), 00052 mNumberOfComponents(0), mSizeX(0), mSizeY(0), mSizeZ(0), mDimension(0), mTypeSize(0), mComponentSize(0), 00053 mActualLengthGPU(0) 00054 { 00055 }
| virtual gpucalc::GPUResource::~GPUResource | ( | ) | [inline, virtual] |
| void gpucalc::Object::addSpecificParameter | ( | const std::string & | ParameterName, | |
| void * | ParameterValue, | |||
| size_t | Size | |||
| ) | [inline, protected, inherited] |
Definition at line 254 of file object.h.
00255 { 00256 SpecificParametersMap::iterator i = mSpecificParameters.find(ParameterName); 00257 if (i != mSpecificParameters.end()) 00258 { 00259 mSpecificParameters.erase(i); 00260 } 00261 mSpecificParameters[ParameterName] = Any(ParameterValue, Size); 00262 }
| virtual size_t gpucalc::GPUResource::getActualLengthGPU | ( | ) | const [inline, virtual] |
| const std::string& gpucalc::Object::getClassName | ( | ) | const [inline, inherited] |
Returns name of class of our object.
Definition at line 92 of file object.h.
00093 { 00094 return mClassName; 00095 }
| virtual size_t gpucalc::GPUResource::getComponentSize | ( | ) | const [inline, virtual] |
| virtual int gpucalc::GPUResource::getDimension | ( | ) | const [inline, virtual] |
| virtual size_t gpucalc::GPUResource::getNumberOfComponents | ( | ) | const [inline, virtual] |
| const std::string& gpucalc::Object::getObjectName | ( | ) | const [inline, inherited] |
Returns name of our object.
Definition at line 101 of file object.h.
00102 { 00103 return mObjectName; 00104 }
| virtual int gpucalc::GPUResource::getSizeX | ( | ) | const [inline, virtual] |
| virtual int gpucalc::GPUResource::getSizeY | ( | ) | const [inline, virtual] |
| virtual int gpucalc::GPUResource::getSizeZ | ( | ) | const [inline, virtual] |
| void gpucalc::Object::getSpecificParameter | ( | const std::string & | ParameterName, | |
| void * | ParameterValue | |||
| ) | [inline, inherited] |
Method for obtaining some specific parameters, such as texture specific params, and so on.
| ParameterName | - name of parameter, usually it similar to specific method of some object (for example, GLTextureID) | |
| ParameterValue | - contain value of named parameter, it must be allocated and have sufficient size. |
Definition at line 128 of file object.h.
00129 { 00130 SpecificParametersMap::iterator i = mSpecificParameters.find(ParameterName); 00131 if (i != mSpecificParameters.end()) 00132 { 00133 i->second.copyValue(ParameterValue); 00134 } 00135 else 00136 { 00137 Except<ERR_ITEM_NOT_FOUND>(this, "Parameter \"" + ParameterName + "\" does not exists.", "Object::getSpecificParameter()", __FILE__, __LINE__); 00138 } 00139 }
| virtual size_t gpucalc::GPUResource::getTypeSize | ( | ) | const [inline, virtual] |
| virtual void gpucalc::GPUResource::initialize | ( | ) | [pure virtual] |
Implemented in gpucalc::GLCgUniform, gpucalc::GLGLSLUniform, and gpucalc::GLTexture.
| virtual bool gpucalc::GPUResource::isInitialized | ( | ) | const [pure virtual] |
Implemented in gpucalc::GLCgUniform, gpucalc::GLGLSLUniform, and gpucalc::GLTexture.
| bool gpucalc::Object::isLocked | ( | ) | const [inline, inherited] |
| virtual bool gpucalc::GPUResource::isUploadedToGPU | ( | ) | const [pure virtual] |
Implemented in gpucalc::GLCgUniform, gpucalc::GLGLSLUniform, and gpucalc::GLTexture.
| void gpucalc::Object::lock | ( | ) | [inline, protected, inherited] |
| void gpucalc::Object::unlock | ( | ) | [inline, protected, inherited] |
| virtual void gpucalc::GPUResource::uploadToGPU | ( | ) | [pure virtual] |
Implemented in gpucalc::GLCgUniform, gpucalc::GLGLSLUniform, and gpucalc::GLTexture.
size_t gpucalc::GPUResource::mActualLengthGPU [protected] |
Definition at line 132 of file gpu_resource.h.
size_t gpucalc::GPUResource::mComponentSize [protected] |
Definition at line 131 of file gpu_resource.h.
size_t gpucalc::GPUResource::mDimension [protected] |
Definition at line 129 of file gpu_resource.h.
size_t gpucalc::GPUResource::mNumberOfComponents [protected] |
Definition at line 125 of file gpu_resource.h.
size_t gpucalc::GPUResource::mSizeX [protected] |
Definition at line 126 of file gpu_resource.h.
size_t gpucalc::GPUResource::mSizeY [protected] |
Definition at line 127 of file gpu_resource.h.
size_t gpucalc::GPUResource::mSizeZ [protected] |
Definition at line 128 of file gpu_resource.h.
size_t gpucalc::GPUResource::mTypeSize [protected] |
Definition at line 130 of file gpu_resource.h.
1.5.6