Try uploading build files after completion

This commit is contained in:
Joshua Granick
2014-02-17 09:30:37 -08:00
parent 43e8b5bde0
commit f0068906d6
4 changed files with 40 additions and 16 deletions

View File

@@ -562,6 +562,7 @@
<lib name="-losp-appfw" if="tizen" />
<lib name="-losp-image" if="tizen" />
<lib name="-losp-ime" if="tizen" />
<lib name="-losp-json" if="tizen" />
<lib name="-losp-net" if="tizen" />
<lib name="-losp-content" if="tizen" />
<lib name="-losp-locations" if="tizen" />

View File

@@ -22,15 +22,15 @@
#elif defined(TIZEN)
//#include <osp/gl.h>
#include <FGraphicsOpengl.h>
//#include <FGraphicsOpengl2.h>
//#include <FGraphicsOpengl.h>
#include <FGraphicsOpengl2.h>
using namespace Tizen::Graphics::Opengl;
//#include <osp/gl2.h>
//#define ALLOW_OGL2
//#define LIME_FORCE_GLES2
#define LIME_FORCE_GLES1
#define ALLOW_OGL2
#define LIME_FORCE_GLES2
//#define LIME_FORCE_GLES1
#define LIME_GLES
#elif defined(IPHONE)

View File

@@ -24,6 +24,8 @@ namespace lime {
void CreateMainFrame (FrameCreationCallback inOnFrame, int inWidth, int inHeight, unsigned int inFlags, const char *inTitle, Surface *inIcon) {
AppLog ("Hello1");
sgCallback = inOnFrame;
sgWidth = inWidth;
sgHeight = inHeight;
@@ -66,6 +68,8 @@ namespace lime {
TizenApplication::TizenApplication (void) {
AppLog ("Hello");
//mAccelX = 0;
//mAccelY = 0;
//mAccelZ = 0;
@@ -124,6 +128,8 @@ namespace lime {
bool TizenApplication::OnAppInitializing (Tizen::App::AppRegistry& appRegistry) {
AppLog ("Init!");
Tizen::Ui::Controls::Frame* appFrame = new (std::nothrow) Tizen::Ui::Controls::Frame ();
appFrame->Construct ();
this->AddFrame (*appFrame);
@@ -156,7 +162,9 @@ namespace lime {
mSensorManager->AddSensorListener (*this, Tizen::Uix::Sensor::SENSOR_TYPE_ACCELERATION, interval, true);*/
bool ok = limeEGLCreate (mForm, sgWidth, sgHeight, 1, (sgFlags & wfDepthBuffer) ? 16 : 0, (sgFlags & wfStencilBuffer) ? 8 : 0, 0);
AppLog ("2");
bool ok = limeEGLCreate (mForm, sgWidth, sgHeight, 2, (sgFlags & wfDepthBuffer) ? 16 : 0, (sgFlags & wfStencilBuffer) ? 8 : 0, 0);
mTimer = new (std::nothrow) Tizen::Base::Runtime::Timer;
mTimer->Construct (*this);