diff --git a/Projects/CodeBlocks/SleepyHead.depend b/Projects/CodeBlocks/SleepyHead.depend index 51e123de..75334c69 100644 --- a/Projects/CodeBlocks/SleepyHead.depend +++ b/Projects/CodeBlocks/SleepyHead.depend @@ -8306,7 +8306,7 @@ -1308005853 /home/mark/projects/git/sleepyhead/src/version.h +1308007178 /home/mark/projects/git/sleepyhead/src/version.h 1307627540 /home/mark/projects/git/sleepyhead/src/libs/sleeplib/prs1_loader.h "machine.h" @@ -8344,10 +8344,10 @@ "sleeplib/profiles.h" "sleeplib/machine_loader.h" -1308003040 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp +1308007178 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp - + diff --git a/src/graphs/graph.cpp b/src/graphs/graph.cpp index 6c96edaa..cc54c9b8 100644 --- a/src/graphs/graph.cpp +++ b/src/graphs/graph.cpp @@ -912,15 +912,28 @@ wxBitmap * gGraphWindow::RenderBitmap(int width,int height) #if wxCHECK_VERSION(2,9,0) display=wxGetX11Display(); fbc = GetGLXFBConfig(); + fbc=&fbc[0]; + #else display=(Display *)wxGetDisplay(); + + int FBAttribs[] = { + GLX_DRAWABLE_TYPE, GLX_PBUFFER_BIT, + GLX_RENDER_TYPE, GLX_RGBA_BIT, + GLX_DOUBLEBUFFER, True, + GLX_RED_SIZE, 8, + GLX_GREEN_SIZE, 8, + GLX_BLUE_SIZE, 8, + None + }; + fbc = glXChooseFBConfig(display, DefaultScreen(display), FBAttribs, &ret); // 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; + //return &wxNullBitmap; #endif + GLXPbuffer pBuffer=glXCreatePbuffer(display, *fbc, attrib ); - GLXPbuffer pBuffer=glXCreatePbuffer(display, fbc[0], attrib ); if (pBuffer == 0) { wxLogError(wxT("pBuffer not availble")); } @@ -933,7 +946,7 @@ wxBitmap * gGraphWindow::RenderBitmap(int width,int height) if (!cx && real_shared_context) cx=real_shared_context; // Only available after redraw.. :( else { // First render screws up unless we do this.. - gx=cx = glXCreateNewContext(display,fbc[0],GLX_RGBA_TYPE, NULL, True); + gx=cx = glXCreateNewContext(display,*fbc,GLX_RGBA_TYPE, NULL, True); } //real_shared_context = diff --git a/src/version.h b/src/version.h index 9d9adb9a..3dbfcdbd 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 = 5599; - static const long REVISION = 13895; + static const long BUILD = 5609; + static const long REVISION = 13956; //Miscellaneous Version Types - 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"; + static const long BUILDS_COUNT = 5788; + #define RC_FILEVERSION 0,7,5609,13956 + #define RC_FILEVERSION_STRING "0, 7, 5609, 13956\0" + static const char FULLVERSION_STRING[] = "0.7.5609.13956"; //These values are to keep track of your versioning state, don't modify them. static const long BUILD_HISTORY = 0;