mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge remote-tracking branch pull/7047.
And fix the whitespace + optimize the pngs.
This commit is contained in:
commit
c0804427ef
5 changed files with 11 additions and 0 deletions
|
@ -17,7 +17,14 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#if defined(IOS)
|
||||
#include <tr1/unordered_map>
|
||||
namespace std {
|
||||
using std::tr1::unordered_map;
|
||||
}
|
||||
#else
|
||||
#include <unordered_map>
|
||||
#endif
|
||||
|
||||
#include "GPU/Common/GPUDebugInterface.h"
|
||||
#include "GPU/Common/IndexGenerator.h"
|
||||
|
|
|
@ -611,7 +611,11 @@ void scalePixel(const Kernel_3x3& ker,
|
|||
|
||||
#ifdef _DEBUG
|
||||
if (breakIntoDebugger)
|
||||
#if defined(IOS)
|
||||
__asm__("trap");
|
||||
#else
|
||||
__debugbreak(); //__asm int 3;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
const unsigned char blend = rotateBlendInfo<rotDeg>(blendInfo);
|
||||
|
|
BIN
ios/assets/Default-568h@3x.png
Normal file
BIN
ios/assets/Default-568h@3x.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.8 KiB |
BIN
ios/assets/Icon-72@3x.png
Normal file
BIN
ios/assets/Icon-72@3x.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 32 KiB |
BIN
ios/assets/Icon@3x.png
Normal file
BIN
ios/assets/Icon@3x.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
Loading…
Add table
Reference in a new issue