| 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; |
| 2173 | image.instantiate(); |
| 2174 | image->initialize_data(p_width, p_height, p_use_mipmaps, p_format, p_data); |
| 2175 | return image; |
| 2176 | } |
| 2177 | |
| 2178 | void Image::set_data(int p_width, int p_height, bool p_use_mipmaps, Format p_format, const Vector<uint8_t> &p_data) { |
| 2179 | initialize_data(p_width, p_height, p_use_mipmaps, p_format, p_data); |
nothing calls this directly
no test coverage detected