mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
added the possibility to allocate aligned memory, an use it to allocate the buffer utilized in texture decoding, this will make a little easy to use aligned writes when possible in sse2/3 optimized algorithms.
some code additions for future use ;). please gcc user test this as i don't have opportunity to test it myself i only use reference code to. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7247 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
ac6c18a5e4
commit
eef715b1cf
9 changed files with 72 additions and 9 deletions
|
@ -95,7 +95,7 @@ public:
|
|||
protected:
|
||||
TextureCache();
|
||||
|
||||
static u8 *temp;
|
||||
static GC_ALIGNED16(u8 *temp);
|
||||
|
||||
private:
|
||||
typedef std::map<u32, TCacheEntryBase*> TexCache;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue