mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-22 20:06:49 +01:00
parent
880f84f8c4
commit
6ef3d20fb1
@ -607,8 +607,8 @@ void BitMap::resize(const Size2 &p_new_size) {
|
|||||||
Ref<BitMap> new_bitmap;
|
Ref<BitMap> new_bitmap;
|
||||||
new_bitmap.instance();
|
new_bitmap.instance();
|
||||||
new_bitmap->create(p_new_size);
|
new_bitmap->create(p_new_size);
|
||||||
int lw = MIN(width, p_new_size.width);
|
int lw = MIN(width, new_bitmap->width);
|
||||||
int lh = MIN(height, p_new_size.height);
|
int lh = MIN(height, new_bitmap->height);
|
||||||
for (int x = 0; x < lw; x++) {
|
for (int x = 0; x < lw; x++) {
|
||||||
for (int y = 0; y < lh; y++) {
|
for (int y = 0; y < lh; y++) {
|
||||||
new_bitmap->set_bit(Vector2(x, y), get_bit(Vector2(x, y)));
|
new_bitmap->set_bit(Vector2(x, y), get_bit(Vector2(x, y)));
|
||||||
|
Loading…
Reference in New Issue
Block a user