![]() |
2013-01-06
, 14:11
|
Posts: 63 |
Thanked: 121 times |
Joined on Dec 2011
@ Sofia, Bulgaria
|
#12
|
![]() |
2013-01-06
, 17:37
|
Posts: 839 |
Thanked: 3,386 times |
Joined on Mar 2009
|
#13
|
![]() |
2013-01-06
, 18:35
|
Posts: 673 |
Thanked: 230 times |
Joined on Oct 2012
@ Mumbai
|
#14
|
![]() |
2013-01-07
, 00:02
|
Posts: 839 |
Thanked: 3,386 times |
Joined on Mar 2009
|
#15
|
diff --git a/Core/Util/PPGeDraw.cpp b/Core/Util/PPGeDraw.cpp
index cbd3bce..e4e0f91 100644
--- a/Core/Util/PPGeDraw.cpp
+++ b/Core/Util/PPGeDraw.cpp
@@ -416,3 +416,20 @@ void PPGeDisableTexture()
WriteCmd(GE_CMD_TEXTUREMAPENABLE, 0);
}
+int GetPow2(int x)
+{
+ int ret = 0;
+ int val = 1;
+ while(x > val)
+ {
+ ret++;
+ val *= 2;
+ }
+ return ret;
+}
diff --git a/GPU/GLES/ShaderManager.cpp b/GPU/GLES/ShaderManager.cpp
index ec5b60e..e796078 100644
--- a/GPU/GLES/ShaderManager.cpp
+++ b/GPU/GLES/ShaderManager.cpp
@@ -24,6 +24,7 @@
#include "ShaderManager.h"
#include "TransformPipeline.h"
+typedef char GLchar;
Shader::Shader(const char *code, uint32_t shaderType) {
source_ = code;
#ifdef _WIN32
![]() |
2013-01-07
, 00:10
|
|
Posts: 1,359 |
Thanked: 1,292 times |
Joined on Oct 2011
@ Tartus.Syria
|
#16
|
Ok, got it compiled for Fremantle. Not yet tested on device. OpenPandora-camp got it already running (rumours), but it is not yet very fast (also rumours) without JIT-support on ARM.
If you want contribute just now you need cmake-2.8.8 (almost trivial to compile). Then check kludge on: https://github.com/hrydgard/ppsspp/issues/347
And then apply these (not yet in issue tracker)
The Following User Says Thank You to sifo For This Useful Post: | ||
![]() |
2013-01-07
, 09:17
|
Posts: 63 |
Thanked: 121 times |
Joined on Dec 2011
@ Sofia, Bulgaria
|
#17
|
![]() |
2013-01-07
, 10:32
|
Posts: 839 |
Thanked: 3,386 times |
Joined on Mar 2009
|
#18
|
-unix:!blackberry:!symbian:!macx: CONFIG += linux +unix:!blackberry:!symbian:!macx: CONFIG += linux mobile_platform
../../native/base/QtMain.h:9:24: fatal error: QAudioOutput: No such file or directory ../../native/base/QtMain.h:10:24: fatal error: QAudioFormat: No such file or directory
![]() |
2013-01-07
, 11:41
|
Posts: 29 |
Thanked: 7 times |
Joined on Jan 2012
|
#19
|
![]() |
2013-01-07
, 12:04
|
Posts: 2,154 |
Thanked: 8,464 times |
Joined on May 2010
|
#20
|
I also tested with qmake for Fremantle. For Settings.pri (otherwise it tries with GL, not GLES)
And then it ends:Code:-unix:!blackberry:!symbian:!macx: CONFIG += linux +unix:!blackberry:!symbian:!macx: CONFIG += linux mobile_platform
Code:../../native/base/QtMain.h:9:24: fatal error: QAudioOutput: No such file or directory ../../native/base/QtMain.h:10:24: fatal error: QAudioFormat: No such file or directory
The Following User Says Thank You to pali For This Useful Post: | ||
The software has gotten much more detailed and sophisticated that you need considerably more.
Imagine what its going to need to emulate the PS3, a cluster server computer?
I'm flattered