Browse Source

tags/2021-05-28
jules 18 years ago
parent
commit
f269e91286
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      build/linux/platform_specific_code/juce_linux_Windowing.cpp

+ 3
- 3
build/linux/platform_specific_code/juce_linux_Windowing.cpp View File

@@ -2800,7 +2800,7 @@ Image* juce_createIconForFile (const File& file)
class WindowedGLContext : public OpenGLContext class WindowedGLContext : public OpenGLContext
{ {
public: public:
WindowedGLContext (Component* const component,
WindowedGLContext (Component* const component,
const OpenGLPixelFormat& pixelFormat_, const OpenGLPixelFormat& pixelFormat_,
GLXContext sharedContext) GLXContext sharedContext)
: renderContext (0), : renderContext (0),
@@ -2875,7 +2875,7 @@ public:
XSync (display, False); XSync (display, False);
} }
~WindowedGLContext()
~WindowedGLContext()
{ {
makeInactive(); makeInactive();
@@ -2943,7 +2943,7 @@ private:
}; };
//============================================================================== //==============================================================================
OpenGLContext* OpenGLContext::createContextForWindow (Component* const component,
OpenGLContext* OpenGLContext::createContextForWindow (Component* const component,
const OpenGLPixelFormat& pixelFormat, const OpenGLPixelFormat& pixelFormat,
const OpenGLContext* const contextToShareWith) const OpenGLContext* const contextToShareWith)
{ {


Loading…
Cancel
Save