summaryrefslogtreecommitdiffstats
path: root/doc/classes/RenderSceneBuffersRD.xml
diff options
context:
space:
mode:
authorBastiaan Olij <mux213@gmail.com>2023-07-07 15:24:20 +1000
committerBastiaan Olij <mux213@gmail.com>2023-07-26 23:48:30 +1000
commit4874b96033131e4489d9d843ea226479ce32ff8b (patch)
tree08c1735158cc1c3388450552792e03b6c8bfe73e /doc/classes/RenderSceneBuffersRD.xml
parent202e4b2c1e7f8b25738b93d0e4d5066453d3edf3 (diff)
downloadredot-engine-4874b96033131e4489d9d843ea226479ce32ff8b.tar.gz
Expose RenderingSceneBuffers through ClassDB
Diffstat (limited to 'doc/classes/RenderSceneBuffersRD.xml')
-rw-r--r--doc/classes/RenderSceneBuffersRD.xml167
1 files changed, 167 insertions, 0 deletions
diff --git a/doc/classes/RenderSceneBuffersRD.xml b/doc/classes/RenderSceneBuffersRD.xml
new file mode 100644
index 0000000000..80a644ad26
--- /dev/null
+++ b/doc/classes/RenderSceneBuffersRD.xml
@@ -0,0 +1,167 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<class name="RenderSceneBuffersRD" inherits="RenderSceneBuffers" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
+ <brief_description>
+ Abstract render scene buffer implementation for the RenderingDevice based renderers.
+ </brief_description>
+ <description>
+ This object manages all 3D rendering buffers for the rendering device based renderers. An instance of this object is created for every viewport that has 3D rendering enabled.
+ All buffers are organised in [b]contexts[/b]. The default context is called [b]render_buffers[/b] and can contain amongst others the color buffer, depth buffer, velocity buffers, VRS density map and MSAA variants of these buffers.
+ Buffers are only guaranteed to exist during rendering of the viewport.
+ [b]Note:[/b] this is an internal rendering server object only exposed for GDExtension plugins.
+ </description>
+ <tutorials>
+ </tutorials>
+ <methods>
+ <method name="clear_context">
+ <return type="void" />
+ <param index="0" name="context" type="StringName" />
+ <description>
+ Frees all buffers related to this context.
+ </description>
+ </method>
+ <method name="create_texture">
+ <return type="RID" />
+ <param index="0" name="context" type="StringName" />
+ <param index="1" name="name" type="StringName" />
+ <param index="2" name="data_format" type="int" enum="RenderingDevice.DataFormat" />
+ <param index="3" name="usage_bits" type="int" />
+ <param index="4" name="texture_samples" type="int" enum="RenderingDevice.TextureSamples" />
+ <param index="5" name="size" type="Vector2i" />
+ <param index="6" name="layers" type="int" />
+ <param index="7" name="mipmaps" type="int" />
+ <param index="8" name="unique" type="bool" />
+ <description>
+ Create a new texture with the given definition and cache this under the given name. Will return the existing texture if it already exists.
+ </description>
+ </method>
+ <method name="create_texture_from_format">
+ <return type="RID" />
+ <param index="0" name="context" type="StringName" />
+ <param index="1" name="name" type="StringName" />
+ <param index="2" name="format" type="RDTextureFormat" />
+ <param index="3" name="view" type="RDTextureView" />
+ <param index="4" name="unique" type="bool" />
+ <description>
+ Create a new texture using the given format and view and cache this under the given name. Will return the existing texture if it already exists.
+ </description>
+ </method>
+ <method name="create_texture_view">
+ <return type="RID" />
+ <param index="0" name="context" type="StringName" />
+ <param index="1" name="name" type="StringName" />
+ <param index="2" name="view_name" type="StringName" />
+ <param index="3" name="view" type="RDTextureView" />
+ <description>
+ Create a new texture view for an existing texture and cache this under the given view_name. Will return the existing teture view if it already exists. Will error if the source texture doesn't exist.
+ </description>
+ </method>
+ <method name="get_color_layer">
+ <return type="RID" />
+ <param index="0" name="layer" type="int" />
+ <description>
+ Returns the specified layer from the color texture we are rendering 3D content to.
+ </description>
+ </method>
+ <method name="get_color_texture">
+ <return type="RID" />
+ <description>
+ Returns the color texture we are rendering 3D content to. If multiview is used this will be a texture array with all views.
+ </description>
+ </method>
+ <method name="get_depth_layer">
+ <return type="RID" />
+ <param index="0" name="layer" type="int" />
+ <description>
+ Returns the specified layer from the depth texture we are rendering 3D content to.
+ </description>
+ </method>
+ <method name="get_depth_texture">
+ <return type="RID" />
+ <description>
+ Returns the depth texture we are rendering 3D content to. If multiview is used this will be a texture array with all views.
+ </description>
+ </method>
+ <method name="get_internal_size" qualifiers="const">
+ <return type="Vector2i" />
+ <description>
+ Returns the internal size of the render buffer (size before upscaling) with which textures are created by default.
+ </description>
+ </method>
+ <method name="get_render_target" qualifiers="const">
+ <return type="RID" />
+ <description>
+ Returns the render target associated with this buffers object.
+ </description>
+ </method>
+ <method name="get_texture" qualifiers="const">
+ <return type="RID" />
+ <param index="0" name="context" type="StringName" />
+ <param index="1" name="name" type="StringName" />
+ <description>
+ Returns a cached texture with this name.
+ </description>
+ </method>
+ <method name="get_texture_format" qualifiers="const">
+ <return type="RDTextureFormat" />
+ <param index="0" name="context" type="StringName" />
+ <param index="1" name="name" type="StringName" />
+ <description>
+ Returns the texture format information with which a cached texture was created.
+ </description>
+ </method>
+ <method name="get_texture_slice">
+ <return type="RID" />
+ <param index="0" name="context" type="StringName" />
+ <param index="1" name="name" type="StringName" />
+ <param index="2" name="layer" type="int" />
+ <param index="3" name="mipmap" type="int" />
+ <param index="4" name="layers" type="int" />
+ <param index="5" name="mipmaps" type="int" />
+ <description>
+ Returns a specific slice (layer or mipmap) for a cached texture.
+ </description>
+ </method>
+ <method name="get_texture_slice_size">
+ <return type="Vector2i" />
+ <param index="0" name="context" type="StringName" />
+ <param index="1" name="name" type="StringName" />
+ <param index="2" name="mipmap" type="int" />
+ <description>
+ Returns the texture size of a given slice of a cached texture.
+ </description>
+ </method>
+ <method name="get_use_taa" qualifiers="const">
+ <return type="bool" />
+ <description>
+ Returns [b]true[/b] if TAA is enabled.
+ </description>
+ </method>
+ <method name="get_velocity_layer">
+ <return type="RID" />
+ <param index="0" name="layer" type="int" />
+ <description>
+ Returns the specified layer from the velocity texture we are rendering 3D content to.
+ </description>
+ </method>
+ <method name="get_velocity_texture">
+ <return type="RID" />
+ <description>
+ Returns the velocity texture we are rendering 3D content to. If multiview is used this will be a texture array with all views.
+ </description>
+ </method>
+ <method name="get_view_count" qualifiers="const">
+ <return type="int" />
+ <description>
+ Returns the view count for the associated viewport.
+ </description>
+ </method>
+ <method name="has_texture" qualifiers="const">
+ <return type="bool" />
+ <param index="0" name="context" type="StringName" />
+ <param index="1" name="name" type="StringName" />
+ <description>
+ Returns [b]true[/b] if a cached texture exists for this name.
+ </description>
+ </method>
+ </methods>
+</class>