mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 08:21:29 +12:00
Fix BE endianess arch support in semaphore_406e (#6116)
Add raw() methods for endianness support types and make use of it.
This commit is contained in:
parent
ade291e73d
commit
cd0ef99df5
6 changed files with 32 additions and 25 deletions
|
@ -325,7 +325,7 @@ namespace rsx
|
|||
{
|
||||
//Endianness is swapped because common upload code expects input in BE
|
||||
//TODO: Implement fast upload path for LE inputs and do away with this
|
||||
element_push_buffer.push_back(se_storage<u32>::swap(index));
|
||||
element_push_buffer.push_back(be_t<u32>{index}.raw());
|
||||
}
|
||||
|
||||
u32 thread::get_push_buffer_index_count() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue