// Copyright (c) 2023 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #include "UIRectangle.hpp" using namespace Dawn; void UIRectangle::getSelfQuads(UICanvas &ctx) { std::vector quads; ctx.addQuad( glm::vec4(position, position + size), uv, color, UIShaderQuadStyle::TEXTURED, texture ); }