#include <renderer/YiGNMFramebufferObject.h>
| CYIGNMFramebufferObject::CYIGNMFramebufferObject |
( |
bool |
screenBuffer = false | ) |
|
| virtual CYIGNMFramebufferObject::~CYIGNMFramebufferObject |
( |
| ) |
|
|
virtual |
| void CYIGNMFramebufferObject::Clear |
( |
float |
r, |
|
|
float |
g, |
|
|
float |
b, |
|
|
float |
a |
|
) |
| |
| void CYIGNMFramebufferObject::ClearDepth |
( |
| ) |
|
| virtual void CYIGNMFramebufferObject::Free |
( |
| ) |
|
|
overrideprotectedvirtual |
Deallocates the GPU memory associated with this object.
Implements IYIGPUObject.
| virtual void CYIGNMFramebufferObject::Generate |
( |
| ) |
|
|
overrideprotectedvirtual |
Generates a valid handle. No GPU memory is allocated until Load() is called.
Implements IYIGPUObject.
| bool CYIGNMFramebufferObject::HasColor |
( |
| ) |
const |
| bool CYIGNMFramebufferObject::HasDepth |
( |
| ) |
const |
| virtual void CYIGNMFramebufferObject::InvalidateHandle |
( |
| ) |
|
|
overrideprotectedvirtual |
This function can be called to invalidate the buffer handle without freeing the associated memory.
This can be used if the GL context is lost and GPU memory is freed implicitly. Calling Free() on this object will result in a crash if the handle is no longer pointing to valid memory, and a new handle may not be created with Generate() if the current handle is valid. This function allows you to inform the buffer object that the GL data has been freed externally and that the handle should be disconnected.
- Warning
- Calling this function without being sure that the handle has been freed in GPU memory will result in a memory leak. Use at your own risk.
Implements IYIGPUObject.
| virtual void CYIGNMFramebufferObject::Load |
( |
const std::shared_ptr< CYIAssetHardware > & |
pHWAsset | ) |
|
|
overridevirtual |
Loads the software data from the associated CYIAsset into graphics memory. If the YI_GPU_OBJECT_STATUS is LOADED_FRESH upon a call to load, meaning that data was previously successfully loaded, the status may become LOADED_STALE in the case where this load failed. See the YI_GPU_OBJECT_STATUS documentation for more details.
Implements IYIGPUObject.
| void CYIGNMFramebufferObject::Sync |
( |
| ) |
const |
This needs to be called before binding a texture that is also used as a Render Target. We have to make sure the previous rendering to that Render Target has been completed before binding the texture.
| virtual void CYIGNMFramebufferObject::Unload |
( |
| ) |
|
|
overridevirtual |
Frees any previously loaded data from video memory, but retains the handle.
Implements IYIGPUObject.
| virtual void CYIGNMFramebufferObject::Use |
( |
| ) |
const |
|
overridevirtual |
Makes the GPU Object active, called by the renderer
Implements IYIGPUObject.
The documentation for this class was generated from the following file: