mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
Fix linux build
This commit is contained in:
parent
ed93bbd16d
commit
4746ef09cd
1 changed files with 2 additions and 2 deletions
|
@ -238,8 +238,8 @@ namespace vk
|
||||||
.src_offset = 0,
|
.src_offset = 0,
|
||||||
|
|
||||||
// TODO: Check interaction with anti-aliasing
|
// TODO: Check interaction with anti-aliasing
|
||||||
.image_width = (u16)transfer_width,
|
.image_width = static_cast<u16>(transfer_width),
|
||||||
.image_height = (u16)transfer_height,
|
.image_height = static_cast<u16>(transfer_height),
|
||||||
.image_pitch = real_pitch,
|
.image_pitch = real_pitch,
|
||||||
.image_bpp = context == rsx::texture_upload_context::dma ? internal_bpp : rsx::get_format_block_size_in_bytes(gcm_format)
|
.image_bpp = context == rsx::texture_upload_context::dma ? internal_bpp : rsx::get_format_block_size_in_bytes(gcm_format)
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue