diff options
author | clayjohn <claynjohn@gmail.com> | 2023-07-25 10:49:35 +0200 |
---|---|---|
committer | clayjohn <claynjohn@gmail.com> | 2023-07-25 10:49:35 +0200 |
commit | d61d4986320e1310afcd294746462976e4844945 (patch) | |
tree | ca3053a5e8cf9e249e3f22cf84ff6403799c862d /scene/resources/placeholder_textures.h | |
parent | 0c2144da908a8223e188d27ed1d31d8248056c78 (diff) | |
download | redot-engine-d61d4986320e1310afcd294746462976e4844945.tar.gz |
Lazily allocate RIDs for PlaceholderTextures to avoid allocating GPU resources unless used
Diffstat (limited to 'scene/resources/placeholder_textures.h')
-rw-r--r-- | scene/resources/placeholder_textures.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/scene/resources/placeholder_textures.h b/scene/resources/placeholder_textures.h index 116ed0f0f0..300d641cc3 100644 --- a/scene/resources/placeholder_textures.h +++ b/scene/resources/placeholder_textures.h @@ -36,7 +36,7 @@ class PlaceholderTexture2D : public Texture2D { GDCLASS(PlaceholderTexture2D, Texture2D) - RID rid; + mutable RID rid; Size2 size = Size2(1, 1); protected: @@ -59,7 +59,7 @@ public: class PlaceholderTexture3D : public Texture3D { GDCLASS(PlaceholderTexture3D, Texture3D) - RID rid; + mutable RID rid; Vector3i size = Vector3i(1, 1, 1); protected: @@ -74,6 +74,7 @@ public: virtual int get_depth() const override; virtual bool has_mipmaps() const override; virtual Vector<Ref<Image>> get_data() const override; + virtual RID get_rid() const override; PlaceholderTexture3D(); ~PlaceholderTexture3D(); @@ -82,7 +83,7 @@ public: class PlaceholderTextureLayered : public TextureLayered { GDCLASS(PlaceholderTextureLayered, TextureLayered) - RID rid; + mutable RID rid; Size2i size = Size2i(1, 1); int layers = 1; LayeredType layered_type = LAYERED_TYPE_2D_ARRAY; @@ -101,6 +102,7 @@ public: virtual int get_layers() const override; virtual bool has_mipmaps() const override; virtual Ref<Image> get_layer_data(int p_layer) const override; + virtual RID get_rid() const override; PlaceholderTextureLayered(LayeredType p_type); ~PlaceholderTextureLayered(); |