summaryrefslogtreecommitdiffstats
path: root/scene/resources/texture.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-02-17 12:28:39 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-02-17 12:32:26 +0100
commit1075931c64716f634ed5efb842e6173d813ab03b (patch)
treea9d5205dafdc299695aafcbf2609ac0f71624173 /scene/resources/texture.h
parentdb9007aef4fff2e23c090646e6f9452cd199213f (diff)
downloadredot-engine-1075931c64716f634ed5efb842e6173d813ab03b.tar.gz
Remove unexposed ProxyTexture, mark AnimatedTexture as deprecated
According to reduz: > [AnimatedTexture] should be removed together with ProxyTexture, its just > not efficient at all in Vulkan and causes invalidation of all descriptor > sets depending on it > it was needed mostly for animated tilemaps, but nowadays there is not a lot > of reason for it Marking AnimatedTexture as deprecated accordingly, until we reach consensus for removing it completely.
Diffstat (limited to 'scene/resources/texture.h')
-rw-r--r--scene/resources/texture.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/scene/resources/texture.h b/scene/resources/texture.h
index 7f74ae6941..7c4d479da8 100644
--- a/scene/resources/texture.h
+++ b/scene/resources/texture.h
@@ -892,29 +892,6 @@ public:
VARIANT_ENUM_CAST(GradientTexture2D::Fill);
VARIANT_ENUM_CAST(GradientTexture2D::Repeat);
-class ProxyTexture : public Texture2D {
-private:
- mutable RID proxy_ph;
- mutable RID proxy;
- Ref<Texture2D> base;
-
-protected:
- static void _bind_methods();
-
-public:
- void set_base(const Ref<Texture2D> &p_texture);
- Ref<Texture2D> get_base() const;
-
- virtual int get_width() const override;
- virtual int get_height() const override;
- virtual RID get_rid() const override;
-
- virtual bool has_alpha() const override;
-
- ProxyTexture();
- ~ProxyTexture();
-};
-
class AnimatedTexture : public Texture2D {
GDCLASS(AnimatedTexture, Texture2D);