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:
Eladash 2019-06-21 19:29:49 +03:00 committed by Ivan
parent ade291e73d
commit cd0ef99df5
6 changed files with 32 additions and 25 deletions

View file

@ -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