Activated QT image support, removed freetype, jpeg, png, gif libs dependencies in the Qt project.
This commit is contained in:
+5
-6
@@ -8,9 +8,8 @@
|
||||
//
|
||||
//-------------------------------------------------------------------------------------
|
||||
#define GL_GLEXT_PROTOTYPES
|
||||
//#define USE_QT_IMAGE
|
||||
|
||||
#if (!defined IOS) && (!defined USE_QT_IMAGE)
|
||||
#if (!defined IOS) && (!defined QT_CONFIG)
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable : 4786)
|
||||
#pragma comment( lib, "giflib.lib" )
|
||||
@@ -354,7 +353,7 @@ JTexture::~JTexture()
|
||||
|
||||
if (mBuffer)
|
||||
{
|
||||
#ifndef USE_QT_IMAGE
|
||||
#ifndef QT_CONFIG
|
||||
delete [] mBuffer;
|
||||
#endif
|
||||
mBuffer = NULL;
|
||||
@@ -1480,7 +1479,7 @@ static int getNextPower2(int width)
|
||||
}
|
||||
|
||||
|
||||
#if (!defined IOS) && (!defined USE_QT_IMAGE)
|
||||
#if (!defined IOS) && (!defined QT_CONFIG)
|
||||
static void jpg_null(j_decompress_ptr cinfo __attribute__((unused)))
|
||||
{
|
||||
}
|
||||
@@ -2097,7 +2096,7 @@ JTexture* JRenderer::LoadTexture(const char* filename, int mode, int TextureForm
|
||||
checkGlError();
|
||||
return tex;
|
||||
}
|
||||
#elif (defined USE_QT_IMAGE)
|
||||
#elif (defined QT_CONFIG)
|
||||
JTexture* JRenderer::LoadTexture(const char* filename, int mode, int TextureFormat __attribute__((unused)))
|
||||
{
|
||||
JTexture *tex = NULL;
|
||||
@@ -2198,7 +2197,7 @@ void JRenderer::TransferTextureToGLContext(JTexture& inTexture)
|
||||
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, inTexture.mTexWidth, inTexture.mTexHeight, 0, GL_RGBA, GL_UNSIGNED_BYTE, inTexture.mBuffer);
|
||||
}
|
||||
}
|
||||
#ifndef USE_QT_IMAGE
|
||||
#ifndef QT_CONFIG
|
||||
delete [] inTexture.mBuffer;
|
||||
#endif
|
||||
inTexture.mBuffer = NULL;
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
#-------------------------------------------------
|
||||
|
||||
QT += core gui opengl
|
||||
VERSION = 0.13.0
|
||||
VERSION = 0.14.0
|
||||
TARGET = wagic
|
||||
TEMPLATE = app
|
||||
QMAKE_CXXFLAGS += -Wno-unused-parameter
|
||||
@@ -20,15 +20,15 @@ QT += phonon dbus
|
||||
}
|
||||
windows:INCLUDEPATH += ../../JGE/Dependencies/include
|
||||
unix:INCLUDEPATH += /usr/include/GL
|
||||
unix:INCLUDEPATH += /usr/include/freetype2
|
||||
#unix:INCLUDEPATH += /usr/include/freetype2
|
||||
INCLUDEPATH += ../../JGE/include
|
||||
INCLUDEPATH += ../../Boost
|
||||
#INCLUDEPATH += ../../Boost
|
||||
INCLUDEPATH += include
|
||||
OBJECTS_DIR = objs
|
||||
MOC_DIR = objs
|
||||
DESTDIR = bin
|
||||
|
||||
unix:LIBS += -ljpeg -lgif -lpng12 -lboost_thread -L../../Boost/lib
|
||||
#unix:LIBS += -lboost_thread -L../../Boost/lib
|
||||
windows:LIBS += -L../../JGE/Dependencies/lib -llibjpeg-static-mt-debug -lgiflib -llibpng -lfmodvc
|
||||
|
||||
# MGT
|
||||
@@ -247,7 +247,6 @@ SOURCES += \
|
||||
../../JGE/src/JDistortionMesh.cpp\
|
||||
../../JGE/src/JFileSystem.cpp\
|
||||
../../JGE/src/JGameObject.cpp\
|
||||
../../JGE/src/JGBKFont.cpp\
|
||||
../../JGE/src/JGE.cpp\
|
||||
../../JGE/src/JGui.cpp\
|
||||
../../JGE/src/JLogger.cpp\
|
||||
@@ -261,7 +260,6 @@ SOURCES += \
|
||||
../../JGE/src/JResourceManager.cpp\
|
||||
../../JGE/src/JSpline.cpp\
|
||||
../../JGE/src/JSprite.cpp\
|
||||
../../JGE/src/JTTFont.cpp\
|
||||
../../JGE/src/Vector2D.cpp\
|
||||
../../JGE/src/tinyxml/tinystr.cpp\
|
||||
../../JGE/src/tinyxml/tinyxml.cpp\
|
||||
@@ -291,7 +289,6 @@ HEADERS += \
|
||||
../../JGE/include/JFileSystem.h\
|
||||
../../JGE/include/JGameLauncher.h\
|
||||
../../JGE/include/JGameObject.h\
|
||||
../../JGE/include/JGBKFont.h\
|
||||
../../JGE/include/JGE.h\
|
||||
../../JGE/include/JGui.h\
|
||||
../../JGE/include/JLBFont.h\
|
||||
@@ -310,7 +307,6 @@ HEADERS += \
|
||||
../../JGE/include/JSoundSystem.h\
|
||||
../../JGE/include/JSpline.h\
|
||||
../../JGE/include/JSprite.h\
|
||||
../../JGE/include/JTTFont.h\
|
||||
../../JGE/include/JTypes.h\
|
||||
../../JGE/include/Vector2D.h\
|
||||
../../JGE/include/Vector3D.h\
|
||||
|
||||
Reference in New Issue
Block a user