summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorBastiaan Olij <mux213@gmail.com>2023-07-10 22:31:27 +1000
committerBastiaan Olij <mux213@gmail.com>2023-07-26 20:46:34 +1000
commit63d6e9c557b2d88e9385865bf2c60445d4afafc2 (patch)
tree8285403e324c45c56936cb921300933256f2c8ce /doc
parent202e4b2c1e7f8b25738b93d0e4d5066453d3edf3 (diff)
downloadredot-engine-63d6e9c557b2d88e9385865bf2c60445d4afafc2.tar.gz
Add custom texture create function
Diffstat (limited to 'doc')
-rw-r--r--doc/classes/RenderingDevice.xml7
-rw-r--r--doc/classes/RenderingServer.xml15
-rw-r--r--doc/classes/Texture2DArrayRD.xml11
-rw-r--r--doc/classes/Texture2DRD.xml17
-rw-r--r--doc/classes/Texture3DRD.xml16
-rw-r--r--doc/classes/TextureCubemapArrayRD.xml11
-rw-r--r--doc/classes/TextureCubemapRD.xml11
-rw-r--r--doc/classes/TextureLayeredRD.xml16
8 files changed, 104 insertions, 0 deletions
diff --git a/doc/classes/RenderingDevice.xml b/doc/classes/RenderingDevice.xml
index 40a6ad9787..3205a33168 100644
--- a/doc/classes/RenderingDevice.xml
+++ b/doc/classes/RenderingDevice.xml
@@ -752,6 +752,13 @@
[b]Note:[/b] [param texture] requires the [constant TEXTURE_USAGE_CAN_COPY_FROM_BIT] to be retrieved. Otherwise, an error is printed and a empty [PackedByteArray] is returned.
</description>
</method>
+ <method name="texture_get_format">
+ <return type="RDTextureFormat" />
+ <param index="0" name="texture" type="RID" />
+ <description>
+ Returns the data format used to create this texture.
+ </description>
+ </method>
<method name="texture_get_native_handle">
<return type="int" />
<param index="0" name="texture" type="RID" />
diff --git a/doc/classes/RenderingServer.xml b/doc/classes/RenderingServer.xml
index 868079a516..64d54b3ba0 100644
--- a/doc/classes/RenderingServer.xml
+++ b/doc/classes/RenderingServer.xml
@@ -3281,6 +3281,13 @@
[b]Note:[/b] The [param texture] must have the same width, height, depth and format as the current texture data. Otherwise, an error will be printed and the original texture won't be modified. If you need to use different width, height, depth or format, use [method texture_replace] instead.
</description>
</method>
+ <method name="texture_get_format" qualifiers="const">
+ <return type="int" enum="Image.Format" />
+ <param index="0" name="texture" type="RID" />
+ <description>
+ Returns the [enum Image.Format] for the texture.
+ </description>
+ </method>
<method name="texture_get_native_handle" qualifiers="const">
<return type="int" />
<param index="0" name="texture" type="RID" />
@@ -3319,6 +3326,14 @@
[i]Deprecated.[/i] ProxyTexture was removed in Godot 4, so this method cannot be used anymore.
</description>
</method>
+ <method name="texture_rd_create">
+ <return type="RID" />
+ <param index="0" name="rd_texture" type="RID" />
+ <param index="1" name="layer_type" type="int" enum="RenderingServer.TextureLayeredType" default="0" />
+ <description>
+ Creates a new texture object based on a texture created directly on the [RenderingDevice]. If the texture contains layers, [param layer_type] is used to define the layer type.
+ </description>
+ </method>
<method name="texture_replace">
<return type="void" />
<param index="0" name="texture" type="RID" />
diff --git a/doc/classes/Texture2DArrayRD.xml b/doc/classes/Texture2DArrayRD.xml
new file mode 100644
index 0000000000..b28cdd436c
--- /dev/null
+++ b/doc/classes/Texture2DArrayRD.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<class name="Texture2DArrayRD" inherits="TextureLayeredRD" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
+ <brief_description>
+ Texture Array for 2D that is bound to a texture created on the [RenderingDevice].
+ </brief_description>
+ <description>
+ This texture array class allows you to use a 2D array texture created directly on the [RenderingDevice] as a texture for materials, meshes, etc.
+ </description>
+ <tutorials>
+ </tutorials>
+</class>
diff --git a/doc/classes/Texture2DRD.xml b/doc/classes/Texture2DRD.xml
new file mode 100644
index 0000000000..b935a7763b
--- /dev/null
+++ b/doc/classes/Texture2DRD.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<class name="Texture2DRD" inherits="Texture2D" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
+ <brief_description>
+ Texture for 2D that is bound to a texture created on the [RenderingDevice].
+ </brief_description>
+ <description>
+ This texture class allows you to use a 2D texture created directly on the [RenderingDevice] as a texture for materials, meshes, etc.
+ </description>
+ <tutorials>
+ </tutorials>
+ <members>
+ <member name="resource_local_to_scene" type="bool" setter="set_local_to_scene" getter="is_local_to_scene" overrides="Resource" default="false" />
+ <member name="texture_rd_rid" type="RID" setter="set_texture_rd_rid" getter="get_texture_rd_rid" default="RID()">
+ The RID of the texture object created on the [RenderingDevice].
+ </member>
+ </members>
+</class>
diff --git a/doc/classes/Texture3DRD.xml b/doc/classes/Texture3DRD.xml
new file mode 100644
index 0000000000..f9d72b7a0f
--- /dev/null
+++ b/doc/classes/Texture3DRD.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<class name="Texture3DRD" inherits="Texture3D" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
+ <brief_description>
+ Texture for 3D that is bound to a texture created on the [RenderingDevice].
+ </brief_description>
+ <description>
+ This texture class allows you to use a 3D texture created directly on the [RenderingDevice] as a texture for materials, meshes, etc.
+ </description>
+ <tutorials>
+ </tutorials>
+ <members>
+ <member name="texture_rd_rid" type="RID" setter="set_texture_rd_rid" getter="get_texture_rd_rid" default="RID()">
+ The RID of the texture object created on the [RenderingDevice].
+ </member>
+ </members>
+</class>
diff --git a/doc/classes/TextureCubemapArrayRD.xml b/doc/classes/TextureCubemapArrayRD.xml
new file mode 100644
index 0000000000..38d5010ee7
--- /dev/null
+++ b/doc/classes/TextureCubemapArrayRD.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<class name="TextureCubemapArrayRD" inherits="TextureLayeredRD" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
+ <brief_description>
+ Texture Array for Cubemaps that is bound to a texture created on the [RenderingDevice].
+ </brief_description>
+ <description>
+ This texture class allows you to use a cubemap array texture created directly on the [RenderingDevice] as a texture for materials, meshes, etc.
+ </description>
+ <tutorials>
+ </tutorials>
+</class>
diff --git a/doc/classes/TextureCubemapRD.xml b/doc/classes/TextureCubemapRD.xml
new file mode 100644
index 0000000000..bd7c897ad3
--- /dev/null
+++ b/doc/classes/TextureCubemapRD.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<class name="TextureCubemapRD" inherits="TextureLayeredRD" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
+ <brief_description>
+ Texture for Cubemap that is bound to a texture created on the [RenderingDevice].
+ </brief_description>
+ <description>
+ This texture class allows you to use a cubemap texture created directly on the [RenderingDevice] as a texture for materials, meshes, etc.
+ </description>
+ <tutorials>
+ </tutorials>
+</class>
diff --git a/doc/classes/TextureLayeredRD.xml b/doc/classes/TextureLayeredRD.xml
new file mode 100644
index 0000000000..65f2d87624
--- /dev/null
+++ b/doc/classes/TextureLayeredRD.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<class name="TextureLayeredRD" inherits="TextureLayered" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
+ <brief_description>
+ Abstract base class for layered texture RD types.
+ </brief_description>
+ <description>
+ Base class for [Texture2DArrayRD], [TextureCubemapRD] and [TextureCubemapArrayRD]. Cannot be used directly, but contains all the functions necessary for accessing the derived resource types.
+ </description>
+ <tutorials>
+ </tutorials>
+ <members>
+ <member name="texture_rd_rid" type="RID" setter="set_texture_rd_rid" getter="get_texture_rd_rid" default="RID()">
+ The RID of the texture object created on the [RenderingDevice].
+ </member>
+ </members>
+</class>