diff options
author | George L. Albany <Megacake1234@gmail.com> | 2024-11-27 21:15:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-27 21:15:49 +0000 |
commit | 85d87116e184e7923b8d6804cab2681b61c62d83 (patch) | |
tree | 55ec5bfa061a5c27272b831e697b78ed1b756a70 /doc/classes/RDTextureFormat.xml | |
parent | b06d20bf39d15ec736d08d4e4fcb32e0c3c1ce1e (diff) | |
parent | 721f53fde47c2727d99e3ecccdb789a67df36de0 (diff) | |
download | redot-engine-master.tar.gz |
Merge commit godotengine/godot@f128f38
Diffstat (limited to 'doc/classes/RDTextureFormat.xml')
-rw-r--r-- | doc/classes/RDTextureFormat.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/classes/RDTextureFormat.xml b/doc/classes/RDTextureFormat.xml index ac875ab7c1..617ed95434 100644 --- a/doc/classes/RDTextureFormat.xml +++ b/doc/classes/RDTextureFormat.xml @@ -37,6 +37,13 @@ <member name="height" type="int" setter="set_height" getter="get_height" default="1"> The texture's height (in pixels). </member> + <member name="is_discardable" type="bool" setter="set_is_discardable" getter="get_is_discardable" default="false"> + If a texture is discardable, its contents do not need to be preserved between frames. This flag is only relevant when the texture is used as target in a draw list. + This information is used by [RenderingDevice] to figure out if a texture's contents can be discarded, eliminating unnecessary writes to memory and boosting performance. + </member> + <member name="is_resolve_buffer" type="bool" setter="set_is_resolve_buffer" getter="get_is_resolve_buffer" default="false"> + The texture will be used as the destination of a resolve operation. + </member> <member name="mipmaps" type="int" setter="set_mipmaps" getter="get_mipmaps" default="1"> The number of mipmaps available in the texture. </member> |