diff options
| author | BastiaanOlij | 2017-05-20 10:09:36 +1000 |
|---|---|---|
| committer | BastiaanOlij | 2017-05-20 10:09:36 +1000 |
| commit | c51ce72702ef58babe1ce3efd1c31206ba6721e2 (patch) | |
| tree | 432eac4bab8f154453e12405b401aba0c9effac8 /servers/visual_server.h | |
| parent | a75623f436c215e107ede321afa08a1897552deb (diff) | |
| download | godot-c51ce72702ef58babe1ce3efd1c31206ba6721e2.tar.gz godot-c51ce72702ef58babe1ce3efd1c31206ba6721e2.tar.zst godot-c51ce72702ef58babe1ce3efd1c31206ba6721e2.zip | |
Added texture_get_texid
Diffstat (limited to '')
| -rw-r--r-- | servers/visual_server.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/servers/visual_server.h b/servers/visual_server.h index 28f21a36e..927768473 100644 --- a/servers/visual_server.h +++ b/servers/visual_server.h @@ -114,6 +114,7 @@ public: virtual void texture_set_flags(RID p_texture, uint32_t p_flags) = 0; virtual uint32_t texture_get_flags(RID p_texture) const = 0; virtual Image::Format texture_get_format(RID p_texture) const = 0; + virtual uint32_t texture_get_texid(RID p_texture) const = 0; virtual uint32_t texture_get_width(RID p_texture) const = 0; virtual uint32_t texture_get_height(RID p_texture) const = 0; virtual void texture_set_size_override(RID p_texture, int p_width, int p_height) = 0; |
