Merge pull request #74526 from clayjohn/RD-texture
Avoid overflow when calculating ptr address for 3D textures in RenderingDevice texture update
This commit is contained in:
commit
c82948af87
|
@ -2530,7 +2530,7 @@ Error RenderingDeviceVulkan::_texture_update(RID p_texture, uint32_t p_layer, co
|
|||
|
||||
for (uint32_t z = 0; z < depth; z++) { // For 3D textures, depth may be > 0.
|
||||
|
||||
const uint8_t *read_ptr = read_ptr_mipmap + image_size * z / depth;
|
||||
const uint8_t *read_ptr = read_ptr_mipmap + (image_size / depth) * z;
|
||||
|
||||
for (uint32_t y = 0; y < height; y += region_size) {
|
||||
for (uint32_t x = 0; x < width; x += region_size) {
|
||||
|
|
Loading…
Reference in New Issue