mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
Update Qt project/Symbian
This commit is contained in:
parent
ec080eb2b6
commit
ae7d6c0c2f
@ -115,7 +115,11 @@ void* AllocateMemoryPages(size_t size)
|
||||
#ifdef _WIN32
|
||||
void* ptr = VirtualAlloc(0, size, MEM_COMMIT, PAGE_READWRITE);
|
||||
#else
|
||||
void* ptr = mmap(0, size, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, 0);
|
||||
void* ptr = mmap(0, size, PROT_READ | PROT_WRITE,
|
||||
#ifndef __SYMBIAN32__
|
||||
MAP_ANON |
|
||||
#endif
|
||||
MAP_PRIVATE, -1, 0);
|
||||
#endif
|
||||
|
||||
// printf("Mapped memory at %p (size %ld)\n", ptr,
|
||||
|
@ -136,6 +136,8 @@ SOURCES += ../Core/CPU.cpp \ # Core
|
||||
../GPU/GLES/TransformPipeline.cpp \
|
||||
../GPU/GLES/VertexDecoder.cpp \
|
||||
../GPU/GLES/VertexShaderGenerator.cpp \
|
||||
../GPU/GeDisasm.cpp \
|
||||
../GPU/GPUCommon.cpp \
|
||||
../GPU/GPUState.cpp \
|
||||
../GPU/Math3D.cpp \
|
||||
../GPU/Null/NullGpu.cpp \ # Kirk
|
||||
@ -245,6 +247,8 @@ HEADERS += ../Core/CPU.h \
|
||||
../GPU/GLES/VertexDecoder.h \
|
||||
../GPU/GLES/VertexShaderGenerator.h \
|
||||
../GPU/GPUInterface.h \
|
||||
../GPU/GeDisasm.h \
|
||||
../GPU/GPUCommon.h \
|
||||
../GPU/GPUState.h \
|
||||
../GPU/Math3D.h \
|
||||
../GPU/Null/NullGpu.h \
|
||||
|
Loading…
Reference in New Issue
Block a user