Urho3D
|
Color or depth-stencil surface that can be rendered into. More...
#include </home/runner/work/urho3d-doxygen.github.io/urho3d-doxygen.github.io/urho3d_repo/Source/Urho3D/GraphicsAPI/RenderSurface.h>
Public Member Functions | |
RenderSurface (Texture *parentTexture) | |
Construct with parent texture. | |
~RenderSurface () override | |
Destruct. | |
void | SetNumViewports (unsigned num) |
Set number of viewports. | |
void | SetViewport (unsigned index, Viewport *viewport) |
Set viewport. | |
void | SetUpdateMode (RenderSurfaceUpdateMode mode) |
Set viewport update mode. Default is to update when visible. | |
void | SetLinkedRenderTarget (RenderSurface *renderTarget) |
Set linked color rendertarget. | |
void | SetLinkedDepthStencil (RenderSurface *depthStencil) |
Set linked depth-stencil surface. | |
void | QueueUpdate () |
Queue manual update of the viewport(s). | |
void | Release () |
Release surface. | |
void | OnDeviceLost () |
Mark the GPU resource destroyed on graphics context destruction. Only used on OpenGL. | |
bool | CreateRenderBuffer (unsigned width, unsigned height, unsigned format, int multiSample) |
Create renderbuffer that cannot be sampled as a texture. Only used on OpenGL. | |
int | GetWidth () const |
Return width. | |
int | GetHeight () const |
Return height. | |
TextureUsage | GetUsage () const |
Return usage. | |
int | GetMultiSample () const |
Return multisampling level. | |
bool | GetAutoResolve () const |
Return multisampling autoresolve mode. | |
unsigned | GetNumViewports () const |
Return number of viewports. | |
Viewport * | GetViewport (unsigned index) const |
Return viewport by index. | |
RenderSurfaceUpdateMode | GetUpdateMode () const |
Return viewport update mode. | |
RenderSurface * | GetLinkedRenderTarget () const |
Return linked color rendertarget. | |
RenderSurface * | GetLinkedDepthStencil () const |
Return linked depth-stencil surface. | |
bool | IsUpdateQueued () const |
Return whether manual update queued. Called internally. | |
void | ResetUpdateQueued () |
Reset update queued flag. Called internally. | |
Texture * | GetParentTexture () const |
Return parent texture. | |
void * | GetSurface () const |
Return Direct3D9 surface. | |
void * | GetRenderTargetView () const |
Return Direct3D11 rendertarget or depth-stencil view. Not valid on OpenGL. | |
void * | GetReadOnlyView () const |
Return Direct3D11 read-only depth-stencil view. May be null if not applicable. Not valid on OpenGL. | |
unsigned | GetTarget () const |
Return surface's OpenGL target. | |
unsigned | GetRenderBuffer () const |
Return OpenGL renderbuffer if created. | |
bool | IsResolveDirty () const |
Return whether multisampled rendertarget needs resolve. | |
void | SetResolveDirty (bool enable) |
Set or clear the need resolve flag. Called internally by Graphics. | |
Public Member Functions inherited from Urho3D::RefCounted | |
RefCounted () | |
Construct. Allocate the reference count structure and set an initial self weak reference. | |
virtual | ~RefCounted () |
Destruct. Mark as expired and also delete the reference count structure if no outside weak references exist. | |
RefCounted (const RefCounted &rhs)=delete | |
Prevent copy construction. | |
RefCounted & | operator= (const RefCounted &rhs)=delete |
Prevent assignment. | |
void | AddRef () |
Increment reference count. Can also be called outside of a SharedPtr for traditional reference counting. | |
void | ReleaseRef () |
Decrement reference count and delete self if no more references. Can also be called outside of a SharedPtr for traditional reference counting. | |
int | Refs () const |
Return reference count. | |
int | WeakRefs () const |
Return weak reference count. | |
RefCount * | RefCountPtr () |
Return pointer to the reference count structure. | |
Private Attributes | |
Texture * | parentTexture_ |
Parent texture. | |
union { | |
void * surface_ | |
Direct3D9 surface. | |
void * renderTargetView_ | |
Direct3D11 rendertarget or depth-stencil view. | |
unsigned renderBuffer_ | |
OpenGL renderbuffer name. | |
}; | |
union { | |
void * readOnlyView_ | |
Direct3D11 read-only depth-stencil view. Present only on depth-stencil surfaces. | |
unsigned target_ | |
OpenGL target. | |
}; | |
Vector< SharedPtr< Viewport > > | viewports_ |
Viewports. | |
WeakPtr< RenderSurface > | linkedRenderTarget_ |
Linked color buffer. | |
WeakPtr< RenderSurface > | linkedDepthStencil_ |
Linked depth buffer. | |
RenderSurfaceUpdateMode | updateMode_ {SURFACE_UPDATEVISIBLE} |
Update mode for viewports. | |
bool | updateQueued_ {} |
Update queued flag. | |
bool | resolveDirty_ {} |
Multisampled resolve dirty flag. | |
Friends | |
class | Texture2D |
class | Texture2DArray |
class | TextureCube |
Color or depth-stencil surface that can be rendered into.