diff --git a/Projects/CodeBlocks/SleepyHead.depend b/Projects/CodeBlocks/SleepyHead.depend index c42640d3..51e123de 100644 --- a/Projects/CodeBlocks/SleepyHead.depend +++ b/Projects/CodeBlocks/SleepyHead.depend @@ -8300,13 +8300,13 @@ "tinyxml/tinyxml.h" -1307993148 /home/mark/projects/git/sleepyhead/src/graphs/graph.h +1308004574 /home/mark/projects/git/sleepyhead/src/graphs/graph.h -1308000649 /home/mark/projects/git/sleepyhead/src/version.h +1308005853 /home/mark/projects/git/sleepyhead/src/version.h 1307627540 /home/mark/projects/git/sleepyhead/src/libs/sleeplib/prs1_loader.h "machine.h" @@ -8344,7 +8344,10 @@ "sleeplib/profiles.h" "sleeplib/machine_loader.h" -1307996365 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp +1308003040 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp + + + @@ -8352,8 +8355,6 @@ - - "sleeplib/profiles.h" "freesans.c" "graph.h" @@ -10930,9 +10931,11 @@ "text-markup.h" "vertex-buffer.h" -1308000449 /home/mark/projects/git/sleepyhead/src/libs/freetype-gl/vertex-buffer.h +1308003215 /home/mark/projects/git/sleepyhead/src/libs/freetype-gl/vertex-buffer.h + + "freetype-gl/vector.h" 1307960497 source:/home/mark/projects/git/sleepyhead/src/libs/freetype-gl/text-markup.c @@ -11022,12 +11025,13 @@ "texture-font.h" -1308000410 source:/home/mark/projects/git/sleepyhead/src/libs/freetype-gl/texture-glyph.cpp +1308003216 source:/home/mark/projects/git/sleepyhead/src/libs/freetype-gl/texture-glyph.cpp + "texture-glyph.h" -1308000067 source:/home/mark/projects/git/sleepyhead/src/libs/freetype-gl/vertex-buffer.cpp +1308002517 source:/home/mark/projects/git/sleepyhead/src/libs/freetype-gl/vertex-buffer.cpp diff --git a/src/graphs/graph.cpp b/src/graphs/graph.cpp index fc79938c..6c96edaa 100644 --- a/src/graphs/graph.cpp +++ b/src/graphs/graph.cpp @@ -5,6 +5,13 @@ Author: Mark Watkins License: LGPL */ +#ifdef __DARWIN__ +#include +#include +#elif defined(__WXMSW__) +#include +#endif + #include #include #include @@ -14,10 +21,6 @@ License: LGPL #include -#ifdef __DARWIN__ -#include -#include -#endif #include "sleeplib/profiles.h" @@ -811,7 +814,7 @@ void gGraphWindow::SetMargins(float top, float right, float bottom, float left) m_marginRight=right; } -#if defined (__UNIX__) +#if !defined(__WXMAC__) && defined (__UNIX__) GLXContext real_shared_context=0; #endif @@ -891,7 +894,7 @@ wxBitmap * gGraphWindow::RenderBitmap(int width,int height) // WGL pBuffer Implementation return &wxNullBitmap; -#elif defined(__DARWIN__) +#elif defined(__WXMAC__) || defined(__WXDARWIN__) return &wxNullBitmap; #elif defined(__UNIX__) @@ -970,7 +973,7 @@ wxBitmap * gGraphWindow::RenderBitmap(int width,int height) wxBitmap *bmp=new wxBitmap(image); glFlush(); -#if defined(__UNIX__) +#if !defined(__WXMAC__) && defined (__UNIX__) if (gx) glXDestroyContext(display,gx); glXDestroyPbuffer(display, pBuffer); #endif @@ -1031,7 +1034,7 @@ void gGraphWindow::OnPaint(wxPaintEvent& event) //#endif -#if defined(__UNIX__) +#if !defined(__WXMAC__) && defined (__UNIX__) real_shared_context = glXGetCurrentContext(); #endif diff --git a/src/graphs/graph.h b/src/graphs/graph.h index 59dfb7a0..534fd82d 100644 --- a/src/graphs/graph.h +++ b/src/graphs/graph.h @@ -7,6 +7,7 @@ License: LGPL #ifndef GRAPH_H #define GRAPH_H + #include #include //#include diff --git a/src/libs/freetype-gl/texture-glyph.cpp b/src/libs/freetype-gl/texture-glyph.cpp index 7af774ff..c5231135 100644 --- a/src/libs/freetype-gl/texture-glyph.cpp +++ b/src/libs/freetype-gl/texture-glyph.cpp @@ -22,7 +22,9 @@ * ========================================================================= */ #if defined(__APPLE__) #include -#else +#elif defined(__WXMSW__) +#include +#else #include #endif //#include diff --git a/src/libs/freetype-gl/vertex-buffer.cpp b/src/libs/freetype-gl/vertex-buffer.cpp index 30167ee3..a3ec83f1 100644 --- a/src/libs/freetype-gl/vertex-buffer.cpp +++ b/src/libs/freetype-gl/vertex-buffer.cpp @@ -25,8 +25,7 @@ #include #include #include "vertex-buffer.h" -//#include -//#include + diff --git a/src/libs/freetype-gl/vertex-buffer.h b/src/libs/freetype-gl/vertex-buffer.h index 93c3785d..ac36e3b0 100644 --- a/src/libs/freetype-gl/vertex-buffer.h +++ b/src/libs/freetype-gl/vertex-buffer.h @@ -25,12 +25,20 @@ #ifndef __VERTEX_BUFFER_H__ #define __VERTEX_BUFFER_H__ -#define GL_GLEXT_PROTOTYPES 1 #if defined(__APPLE__) #include +#elif defined(__WXMSW__) + +#include #else + + #define GL_GLEXT_PROTOTYPES 1 +//#include +//#include #include + #include + #endif #include "freetype-gl/vector.h" // grrr.. nasty c programmers.. go learn a real OOPL. diff --git a/src/version.h b/src/version.h index b2e40b57..9d9adb9a 100644 --- a/src/version.h +++ b/src/version.h @@ -16,14 +16,14 @@ namespace AutoVersion{ //Standard Version Type static const long MAJOR = 0; static const long MINOR = 7; - static const long BUILD = 5584; - static const long REVISION = 13805; + static const long BUILD = 5599; + static const long REVISION = 13895; //Miscellaneous Version Types - static const long BUILDS_COUNT = 5725; - #define RC_FILEVERSION 0,7,5584,13805 - #define RC_FILEVERSION_STRING "0, 7, 5584, 13805\0" - static const char FULLVERSION_STRING[] = "0.7.5584.13805"; + static const long BUILDS_COUNT = 5761; + #define RC_FILEVERSION 0,7,5599,13895 + #define RC_FILEVERSION_STRING "0, 7, 5599, 13895\0" + static const char FULLVERSION_STRING[] = "0.7.5599.13895"; //These values are to keep track of your versioning state, don't modify them. static const long BUILD_HISTORY = 0;