From edbfe3f066999fc7be6e5f59bd5911cbbd5b8351 Mon Sep 17 00:00:00 2001 From: yabause Date: Thu, 7 May 2009 23:49:03 +0000 Subject: [PATCH] More endian fixes. Now the first screen with 3D in SPP displays correctly. --- desmume/src/rasterize.cpp | 5 ++++- desmume/src/texcache.cpp | 34 +++++++++++++++++++++++++++++++++- 2 files changed, 37 insertions(+), 2 deletions(-) diff --git a/desmume/src/rasterize.cpp b/desmume/src/rasterize.cpp index f54938add..0bb667fb9 100644 --- a/desmume/src/rasterize.cpp +++ b/desmume/src/rasterize.cpp @@ -216,8 +216,11 @@ struct PolyAttr union FragmentColor { u32 color; struct { - //#ifdef WORDS_BIGENDIAN ? +#ifdef WORDS_BIGENDIAN + u8 a,b,g,r; +#else u8 r,g,b,a; +#endif }; }; diff --git a/desmume/src/texcache.cpp b/desmume/src/texcache.cpp index 27765787c..c876c9d1d 100644 --- a/desmume/src/texcache.cpp +++ b/desmume/src/texcache.cpp @@ -74,6 +74,34 @@ public: } return done; } + + // this function does the same than dump + // but works for both little and big endian + // when buf is an u16 array + int dump16(void* buf, int size=-1) + { + if(size==-1) size = this->size; + size = min(this->size,size); + u16* bufptr = (u16*)buf; + int done = 0; + for(int i=0;i(u32 format, u32 texpal); -template void TexCache_SetTexture(u32 format, u32 texpal); \ No newline at end of file +template void TexCache_SetTexture(u32 format, u32 texpal);