| 2162 | } |
| 2163 | |
| 2164 | Ref<Image> Image::create_empty(int p_width, int p_height, bool p_use_mipmaps, Format p_format) { |
| 2165 | Ref<Image> image; |
| 2166 | image.instantiate(); |
| 2167 | image->initialize_data(p_width, p_height, p_use_mipmaps, p_format); |
| 2168 | return image; |
| 2169 | } |
| 2170 | |
| 2171 | Ref<Image> Image::create_from_data(int p_width, int p_height, bool p_use_mipmaps, Format p_format, const Vector<uint8_t> &p_data) { |
| 2172 | Ref<Image> image; |
nothing calls this directly
no test coverage detected