mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 22:53:01 +00:00
Merge pull request #92587 from RandomShaper/validate_tex_usage
RenderingDevice: Reject creation of textures with no usage
This commit is contained in:
commit
705b7a0b0b
@ -702,6 +702,8 @@ RID RenderingDevice::texture_create(const TextureFormat &p_format, const Texture
|
|||||||
|
|
||||||
ERR_FAIL_INDEX_V(format.samples, TEXTURE_SAMPLES_MAX, RID());
|
ERR_FAIL_INDEX_V(format.samples, TEXTURE_SAMPLES_MAX, RID());
|
||||||
|
|
||||||
|
ERR_FAIL_COND_V_MSG(format.usage_bits == 0, RID(), "No usage bits specified (at least one is needed)");
|
||||||
|
|
||||||
format.height = format.texture_type != TEXTURE_TYPE_1D && format.texture_type != TEXTURE_TYPE_1D_ARRAY ? format.height : 1;
|
format.height = format.texture_type != TEXTURE_TYPE_1D && format.texture_type != TEXTURE_TYPE_1D_ARRAY ? format.height : 1;
|
||||||
format.depth = format.texture_type == TEXTURE_TYPE_3D ? format.depth : 1;
|
format.depth = format.texture_type == TEXTURE_TYPE_3D ? format.depth : 1;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user