Texture refactor

-Texture renamed to Texture2D
-TextureLayered as base now inherits 2Darray, cubemap and cubemap array
-Removed all references to flags in textures (they will go in the shader)
-Texture3D gone for now (will come back later done properly)
-Create base rasterizer for RenderDevice, RasterizerRD
This commit is contained in:
Juan Linietsky
2019-06-11 15:43:37 -03:00
parent 9ffe57a10e
commit 3f335ce3d4
287 changed files with 2829 additions and 2540 deletions

View File

@@ -35,8 +35,8 @@
Size2 CheckButton::get_icon_size() const {
Ref<Texture> on = Control::get_icon(is_disabled() ? "on_disabled" : "on");
Ref<Texture> off = Control::get_icon(is_disabled() ? "off_disabled" : "off");
Ref<Texture2D> on = Control::get_icon(is_disabled() ? "on_disabled" : "on");
Ref<Texture2D> off = Control::get_icon(is_disabled() ? "off_disabled" : "off");
Size2 tex_size = Size2(0, 0);
if (!on.is_null())
tex_size = Size2(on->get_width(), on->get_height());
@@ -68,8 +68,8 @@ void CheckButton::_notification(int p_what) {
RID ci = get_canvas_item();
Ref<Texture> on = Control::get_icon(is_disabled() ? "on_disabled" : "on");
Ref<Texture> off = Control::get_icon(is_disabled() ? "off_disabled" : "off");
Ref<Texture2D> on = Control::get_icon(is_disabled() ? "on_disabled" : "on");
Ref<Texture2D> off = Control::get_icon(is_disabled() ? "off_disabled" : "off");
Ref<StyleBox> sb = get_stylebox("normal");
Vector2 ofs;