summaryrefslogtreecommitdiffstats
path: root/scene/resources/texture.h
diff options
context:
space:
mode:
Diffstat (limited to 'scene/resources/texture.h')
-rw-r--r--scene/resources/texture.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/scene/resources/texture.h b/scene/resources/texture.h
index e7840804bf..cdad884e71 100644
--- a/scene/resources/texture.h
+++ b/scene/resources/texture.h
@@ -57,8 +57,8 @@ class Texture2D : public Texture {
protected:
static void _bind_methods();
- GDVIRTUAL0RC(int, _get_width)
- GDVIRTUAL0RC(int, _get_height)
+ GDVIRTUAL0RC_REQUIRED(int, _get_width)
+ GDVIRTUAL0RC_REQUIRED(int, _get_height)
GDVIRTUAL2RC(bool, _is_pixel_opaque, int, int)
GDVIRTUAL0RC(bool, _has_alpha)
@@ -93,13 +93,13 @@ class TextureLayered : public Texture {
protected:
static void _bind_methods();
- GDVIRTUAL0RC(Image::Format, _get_format)
- GDVIRTUAL0RC(uint32_t, _get_layered_type)
- GDVIRTUAL0RC(int, _get_width)
- GDVIRTUAL0RC(int, _get_height)
- GDVIRTUAL0RC(int, _get_layers)
- GDVIRTUAL0RC(bool, _has_mipmaps)
- GDVIRTUAL1RC(Ref<Image>, _get_layer_data, int)
+ GDVIRTUAL0RC_REQUIRED(Image::Format, _get_format)
+ GDVIRTUAL0RC_REQUIRED(uint32_t, _get_layered_type)
+ GDVIRTUAL0RC_REQUIRED(int, _get_width)
+ GDVIRTUAL0RC_REQUIRED(int, _get_height)
+ GDVIRTUAL0RC_REQUIRED(int, _get_layers)
+ GDVIRTUAL0RC_REQUIRED(bool, _has_mipmaps)
+ GDVIRTUAL1RC_REQUIRED(Ref<Image>, _get_layer_data, int)
public:
enum LayeredType {
LAYERED_TYPE_2D_ARRAY,
@@ -128,12 +128,12 @@ protected:
TypedArray<Image> _get_datai() const;
- GDVIRTUAL0RC(Image::Format, _get_format)
- GDVIRTUAL0RC(int, _get_width)
- GDVIRTUAL0RC(int, _get_height)
- GDVIRTUAL0RC(int, _get_depth)
- GDVIRTUAL0RC(bool, _has_mipmaps)
- GDVIRTUAL0RC(TypedArray<Image>, _get_data)
+ GDVIRTUAL0RC_REQUIRED(Image::Format, _get_format)
+ GDVIRTUAL0RC_REQUIRED(int, _get_width)
+ GDVIRTUAL0RC_REQUIRED(int, _get_height)
+ GDVIRTUAL0RC_REQUIRED(int, _get_depth)
+ GDVIRTUAL0RC_REQUIRED(bool, _has_mipmaps)
+ GDVIRTUAL0RC_REQUIRED(TypedArray<Image>, _get_data)
public:
virtual Image::Format get_format() const;
virtual int get_width() const;