The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

241 lines
9.9KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-11 by Raw Material Software Ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the GNU General
  7. Public License (Version 2), as published by the Free Software Foundation.
  8. A copy of the license is included in the JUCE distribution, or can be found
  9. online at www.gnu.org/licenses.
  10. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. ------------------------------------------------------------------------------
  14. To release a closed-source product which uses JUCE, commercial licenses are
  15. available: visit www.rawmaterialsoftware.com/juce for more information.
  16. ==============================================================================
  17. */
  18. extern ComponentPeer* createNonRepaintingEmbeddedWindowsPeer (Component*, void* parent);
  19. //==============================================================================
  20. class OpenGLContext::NativeContext
  21. {
  22. public:
  23. NativeContext (Component& component,
  24. const OpenGLPixelFormat& pixelFormat,
  25. const NativeContext* contextToShareWith)
  26. {
  27. createNativeWindow (component);
  28. PIXELFORMATDESCRIPTOR pfd;
  29. initialisePixelFormatDescriptor (pfd, pixelFormat);
  30. const int pixFormat = ChoosePixelFormat (dc, &pfd);
  31. if (pixFormat != 0)
  32. SetPixelFormat (dc, pixFormat, &pfd);
  33. renderContext = wglCreateContext (dc);
  34. if (renderContext != 0)
  35. {
  36. makeActive();
  37. initialiseGLExtensions();
  38. const int wglFormat = wglChoosePixelFormatExtension (pixelFormat);
  39. wglMakeCurrent (0, 0);
  40. if (wglFormat != pixFormat && wglFormat != 0)
  41. {
  42. // can't change the pixel format of a window, so need to delete the
  43. // old one and create a new one..
  44. releaseDC();
  45. nativeWindow = nullptr;
  46. createNativeWindow (component);
  47. if (SetPixelFormat (dc, wglFormat, &pfd))
  48. {
  49. deleteRenderContext();
  50. renderContext = wglCreateContext (dc);
  51. }
  52. }
  53. if (contextToShareWith != nullptr)
  54. wglShareLists (contextToShareWith->renderContext, renderContext);
  55. component.getTopLevelComponent()->repaint();
  56. component.repaint();
  57. }
  58. }
  59. ~NativeContext()
  60. {
  61. deleteRenderContext();
  62. releaseDC();
  63. }
  64. void initialiseOnRenderThread() {}
  65. void shutdownOnRenderThread() {}
  66. bool makeActive() const noexcept { return wglMakeCurrent (dc, renderContext) != FALSE; }
  67. bool isActive() const noexcept { return wglGetCurrentContext() == renderContext; }
  68. void swapBuffers() const noexcept { SwapBuffers (dc); }
  69. bool setSwapInterval (int numFramesPerSwap)
  70. {
  71. jassert (isActive()); // this can only be called when the context is active..
  72. return wglSwapIntervalEXT != nullptr && wglSwapIntervalEXT (numFramesPerSwap) != FALSE;
  73. }
  74. int getSwapInterval() const
  75. {
  76. jassert (isActive()); // this can only be called when the context is active..
  77. return wglGetSwapIntervalEXT != nullptr ? wglGetSwapIntervalEXT() : 0;
  78. }
  79. void updateWindowPosition (const Rectangle<int>& bounds)
  80. {
  81. if (nativeWindow != nullptr)
  82. SetWindowPos ((HWND) nativeWindow->getNativeHandle(), 0,
  83. bounds.getX(), bounds.getY(), bounds.getWidth(), bounds.getHeight(),
  84. SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOOWNERZORDER);
  85. }
  86. bool createdOk() const noexcept { return getRawContext() != nullptr; }
  87. void* getRawContext() const noexcept { return renderContext; }
  88. unsigned int getFrameBufferID() const noexcept { return 0; }
  89. struct Locker { Locker (NativeContext&) {} };
  90. private:
  91. Component dummyComponent;
  92. ScopedPointer<ComponentPeer> nativeWindow;
  93. HGLRC renderContext;
  94. HDC dc;
  95. #define JUCE_DECLARE_WGL_EXTENSION_FUNCTION(name, returnType, params) \
  96. typedef returnType (__stdcall *type_ ## name) params; type_ ## name name;
  97. JUCE_DECLARE_WGL_EXTENSION_FUNCTION (wglChoosePixelFormatARB, BOOL, (HDC, const int*, const FLOAT*, UINT, int*, UINT*))
  98. JUCE_DECLARE_WGL_EXTENSION_FUNCTION (wglSwapIntervalEXT, BOOL, (int))
  99. JUCE_DECLARE_WGL_EXTENSION_FUNCTION (wglGetSwapIntervalEXT, int, ())
  100. #undef JUCE_DECLARE_WGL_EXTENSION_FUNCTION
  101. void initialiseGLExtensions()
  102. {
  103. #define JUCE_INIT_WGL_FUNCTION(name) name = (type_ ## name) OpenGLHelpers::getExtensionFunction (#name);
  104. JUCE_INIT_WGL_FUNCTION (wglChoosePixelFormatARB);
  105. JUCE_INIT_WGL_FUNCTION (wglSwapIntervalEXT);
  106. JUCE_INIT_WGL_FUNCTION (wglGetSwapIntervalEXT);
  107. #undef JUCE_INIT_WGL_FUNCTION
  108. }
  109. void createNativeWindow (Component& component)
  110. {
  111. Component* topComp = component.getTopLevelComponent();
  112. nativeWindow = createNonRepaintingEmbeddedWindowsPeer (&dummyComponent, topComp->getWindowHandle());
  113. updateWindowPosition (topComp->getLocalArea (&component, component.getLocalBounds()));
  114. nativeWindow->setVisible (true);
  115. dc = GetDC ((HWND) nativeWindow->getNativeHandle());
  116. }
  117. void deleteRenderContext()
  118. {
  119. if (renderContext != 0)
  120. {
  121. wglDeleteContext (renderContext);
  122. renderContext = 0;
  123. }
  124. }
  125. void releaseDC()
  126. {
  127. ReleaseDC ((HWND) nativeWindow->getNativeHandle(), dc);
  128. }
  129. static void initialisePixelFormatDescriptor (PIXELFORMATDESCRIPTOR& pfd, const OpenGLPixelFormat& pixelFormat)
  130. {
  131. zerostruct (pfd);
  132. pfd.nSize = sizeof (pfd);
  133. pfd.nVersion = 1;
  134. pfd.dwFlags = PFD_SUPPORT_OPENGL | PFD_DRAW_TO_WINDOW | PFD_DOUBLEBUFFER;
  135. pfd.iPixelType = PFD_TYPE_RGBA;
  136. pfd.iLayerType = PFD_MAIN_PLANE;
  137. pfd.cColorBits = (BYTE) (pixelFormat.redBits + pixelFormat.greenBits + pixelFormat.blueBits);
  138. pfd.cRedBits = (BYTE) pixelFormat.redBits;
  139. pfd.cGreenBits = (BYTE) pixelFormat.greenBits;
  140. pfd.cBlueBits = (BYTE) pixelFormat.blueBits;
  141. pfd.cAlphaBits = (BYTE) pixelFormat.alphaBits;
  142. pfd.cDepthBits = (BYTE) pixelFormat.depthBufferBits;
  143. pfd.cStencilBits = (BYTE) pixelFormat.stencilBufferBits;
  144. pfd.cAccumBits = (BYTE) (pixelFormat.accumulationBufferRedBits + pixelFormat.accumulationBufferGreenBits
  145. + pixelFormat.accumulationBufferBlueBits + pixelFormat.accumulationBufferAlphaBits);
  146. pfd.cAccumRedBits = (BYTE) pixelFormat.accumulationBufferRedBits;
  147. pfd.cAccumGreenBits = (BYTE) pixelFormat.accumulationBufferGreenBits;
  148. pfd.cAccumBlueBits = (BYTE) pixelFormat.accumulationBufferBlueBits;
  149. pfd.cAccumAlphaBits = (BYTE) pixelFormat.accumulationBufferAlphaBits;
  150. }
  151. int wglChoosePixelFormatExtension (const OpenGLPixelFormat& pixelFormat) const
  152. {
  153. int format = 0;
  154. if (wglChoosePixelFormatARB != nullptr)
  155. {
  156. int atts[64];
  157. int n = 0;
  158. atts[n++] = WGL_DRAW_TO_WINDOW_ARB; atts[n++] = GL_TRUE;
  159. atts[n++] = WGL_SUPPORT_OPENGL_ARB; atts[n++] = GL_TRUE;
  160. atts[n++] = WGL_DOUBLE_BUFFER_ARB; atts[n++] = GL_TRUE;
  161. atts[n++] = WGL_PIXEL_TYPE_ARB; atts[n++] = WGL_TYPE_RGBA_ARB;
  162. atts[n++] = WGL_COLOR_BITS_ARB; atts[n++] = pixelFormat.redBits + pixelFormat.greenBits + pixelFormat.blueBits;
  163. atts[n++] = WGL_RED_BITS_ARB; atts[n++] = pixelFormat.redBits;
  164. atts[n++] = WGL_GREEN_BITS_ARB; atts[n++] = pixelFormat.greenBits;
  165. atts[n++] = WGL_BLUE_BITS_ARB; atts[n++] = pixelFormat.blueBits;
  166. atts[n++] = WGL_ALPHA_BITS_ARB; atts[n++] = pixelFormat.alphaBits;
  167. atts[n++] = WGL_DEPTH_BITS_ARB; atts[n++] = pixelFormat.depthBufferBits;
  168. atts[n++] = WGL_STENCIL_BITS_ARB; atts[n++] = pixelFormat.stencilBufferBits;
  169. atts[n++] = WGL_ACCUM_RED_BITS_ARB; atts[n++] = pixelFormat.accumulationBufferRedBits;
  170. atts[n++] = WGL_ACCUM_GREEN_BITS_ARB; atts[n++] = pixelFormat.accumulationBufferGreenBits;
  171. atts[n++] = WGL_ACCUM_BLUE_BITS_ARB; atts[n++] = pixelFormat.accumulationBufferBlueBits;
  172. atts[n++] = WGL_ACCUM_ALPHA_BITS_ARB; atts[n++] = pixelFormat.accumulationBufferAlphaBits;
  173. if (pixelFormat.multisamplingLevel > 0
  174. && OpenGLHelpers::isExtensionSupported ("GL_ARB_multisample"))
  175. {
  176. atts[n++] = WGL_SAMPLE_BUFFERS_ARB;
  177. atts[n++] = 1;
  178. atts[n++] = WGL_SAMPLES_ARB;
  179. atts[n++] = pixelFormat.multisamplingLevel;
  180. }
  181. atts[n++] = 0;
  182. jassert (n <= numElementsInArray (atts));
  183. UINT formatsCount = 0;
  184. wglChoosePixelFormatARB (dc, atts, nullptr, 1, &format, &formatsCount);
  185. }
  186. return format;
  187. }
  188. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (NativeContext);
  189. };
  190. //==============================================================================
  191. bool OpenGLHelpers::isContextActive()
  192. {
  193. return wglGetCurrentContext() != 0;
  194. }