diff --git a/Projects/CodeBlocks/SleepyHead.depend b/Projects/CodeBlocks/SleepyHead.depend index c4169a52..160e8b90 100644 --- a/Projects/CodeBlocks/SleepyHead.depend +++ b/Projects/CodeBlocks/SleepyHead.depend @@ -8306,7 +8306,7 @@ -1307994509 /home/mark/projects/git/sleepyhead/src/version.h +1307995152 /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,7 @@ "sleeplib/profiles.h" "sleeplib/machine_loader.h" -1307994526 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp +1307994893 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp diff --git a/src/graphs/graph.cpp b/src/graphs/graph.cpp index 66fd13d0..3dd8d65b 100644 --- a/src/graphs/graph.cpp +++ b/src/graphs/graph.cpp @@ -816,8 +816,13 @@ wxBitmap * gGraphWindow::RenderBitmap(int width,int height) { //pBuffers are evil.. but I need to use them here. +#if defined(__WXMSW__) +// WGL pBuffer Implementation + return &wxNullBitmap; +#elif defined(__DARWIN__) + return &wxNullBitmap; -#if defined(__UNIX__) +#elif defined(__UNIX__) int attrib[]={ GLX_PBUFFER_WIDTH,width, @@ -828,10 +833,15 @@ wxBitmap * gGraphWindow::RenderBitmap(int width,int height) int ret; Display *display=NULL; GLXFBConfig *fbc=NULL; + #if wxCHECK_VERSION(2,9,0) display=wxGetX11Display(); fbc = GetGLXFBConfig(); #else + display=(Display *)wxGetDisplay(); + // TODO: + // have to setup a GLXFBConfig structure for wx2.8 because wx2.8 is crap. + // already done this crap but deleted it.. arggghh..... return &wxNullBitmap; #endif @@ -854,8 +864,8 @@ wxBitmap * gGraphWindow::RenderBitmap(int width,int height) wxLogError(wxT("Couldn't make buffer current")); } -// texfont->FaceSize(14); #endif + // glClearColor(1,1,0,1); glClear(GL_COLOR_BUFFER_BIT); diff --git a/src/version.h b/src/version.h index f32e8569..89649b48 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 = 5549; - static const long REVISION = 13587; + static const long BUILD = 5555; + static const long REVISION = 13616; //Miscellaneous Version Types - static const long BUILDS_COUNT = 5647; - #define RC_FILEVERSION 0,7,5549,13587 - #define RC_FILEVERSION_STRING "0, 7, 5549, 13587\0" - static const char FULLVERSION_STRING[] = "0.7.5549.13587"; + static const long BUILDS_COUNT = 5661; + #define RC_FILEVERSION 0,7,5555,13616 + #define RC_FILEVERSION_STRING "0, 7, 5555, 13616\0" + static const char FULLVERSION_STRING[] = "0.7.5555.13616"; //These values are to keep track of your versioning state, don't modify them. static const long BUILD_HISTORY = 0;