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.

276 lines
12KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2013 - Raw Material Software Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. #ifndef JUCE_OPENGLCONTEXT_H_INCLUDED
  18. #define JUCE_OPENGLCONTEXT_H_INCLUDED
  19. //==============================================================================
  20. /**
  21. Creates an OpenGL context, which can be attached to a component.
  22. To render some OpenGL, you should create an instance of an OpenGLContext,
  23. and call attachTo() to make it use a component as its render target.
  24. To provide threaded rendering, you can supply an OpenGLRenderer object that
  25. will be used to render each frame.
  26. Before your target component or OpenGLRenderer is deleted, you MUST call
  27. detach() or delete the OpenGLContext to allow the background thread to
  28. stop and the native resources to be freed safely.
  29. @see OpenGLRenderer
  30. */
  31. class JUCE_API OpenGLContext
  32. {
  33. public:
  34. OpenGLContext();
  35. /** Destructor. */
  36. ~OpenGLContext();
  37. //==============================================================================
  38. /** Gives the context an OpenGLRenderer to use to do the drawing.
  39. The object that you give it will not be owned by the context, so it's the caller's
  40. responsibility to manage its lifetime and make sure that it doesn't get deleted
  41. while the context may be using it. To stop the context using a renderer, just call
  42. this method with a null pointer.
  43. Note: This must be called BEFORE attaching your context to a target component!
  44. */
  45. void setRenderer (OpenGLRenderer*) noexcept;
  46. /** Attaches the context to a target component.
  47. If the component is not fully visible, this call will wait until the component
  48. is shown before actually creating a native context for it.
  49. When a native context is created, a thread is started, and will be used to call
  50. the OpenGLRenderer methods. The context will be floated above the target component,
  51. and when the target moves, it will track it. If the component is hidden/shown, the
  52. context may be deleted and re-created.
  53. */
  54. void attachTo (Component&);
  55. /** Detaches the context from its target component and deletes any native resources.
  56. If the context has not been attached, this will do nothing. Otherwise, it will block
  57. until the context and its thread have been cleaned up.
  58. */
  59. void detach();
  60. /** Returns true if the context is attached to a component and is on-screen.
  61. Note that if you call attachTo() for a non-visible component, this method will
  62. return false until the component is made visible.
  63. */
  64. bool isAttached() const noexcept;
  65. /** Returns the component to which this context is currently attached, or nullptr. */
  66. Component* getTargetComponent() const noexcept;
  67. //==============================================================================
  68. /** Sets the pixel format which you'd like to use for the target GL surface.
  69. Note: This must be called BEFORE attaching your context to a target component!
  70. */
  71. void setPixelFormat (const OpenGLPixelFormat& preferredPixelFormat) noexcept;
  72. /** Provides a context with which you'd like this context's resources to be shared.
  73. The object passed-in here is a platform-dependent native context object, and
  74. must not be deleted while this context may still be using it! To turn off sharing,
  75. you can call this method with a null pointer.
  76. Note: This must be called BEFORE attaching your context to a target component!
  77. */
  78. void setNativeSharedContext (void* nativeContextToShareWith) noexcept;
  79. /** Enables multisampling on platforms where this is implemented.
  80. If enabling this, you must call this method before attachTo().
  81. */
  82. void setMultisamplingEnabled (bool) noexcept;
  83. /** Returns true if shaders can be used in this context. */
  84. bool areShadersAvailable() const;
  85. /** Enables or disables the use of the GL context to perform 2D rendering
  86. of the component to which it is attached.
  87. If this is false, then only your OpenGLRenderer will be used to perform
  88. any rendering. If true, then each time your target's paint() method needs
  89. to be called, an OpenGLGraphicsContext will be used to render it, (after
  90. calling your OpenGLRenderer if there is one).
  91. By default this is set to true. If you're not using any paint() method functionality
  92. and are doing all your rendering in an OpenGLRenderer, you should disable it
  93. to improve performance.
  94. Note: This must be called BEFORE attaching your context to a target component!
  95. */
  96. void setComponentPaintingEnabled (bool shouldPaintComponent) noexcept;
  97. /** Enables or disables continuous repainting.
  98. If set to true, the context will run a loop, re-rendering itself without waiting
  99. for triggerRepaint() to be called, at a frequency determined by the swap interval
  100. (see setSwapInterval). If false, then after each render callback, it will wait for
  101. another call to triggerRepaint() before rendering again.
  102. This is disabled by default.
  103. @see setSwapInterval
  104. */
  105. void setContinuousRepainting (bool shouldContinuouslyRepaint) noexcept;
  106. /** Asynchronously causes a repaint to be made. */
  107. void triggerRepaint();
  108. //==============================================================================
  109. /** This retrieves an object that was previously stored with setAssociatedObject().
  110. If no object is found with the given name, this will return nullptr.
  111. This method must only be called from within the GL rendering methods.
  112. @see setAssociatedObject
  113. */
  114. ReferenceCountedObject* getAssociatedObject (const char* name) const;
  115. /** Attaches a named object to the context, which will be deleted when the context is
  116. destroyed.
  117. This allows you to store an object which will be released before the context is
  118. deleted. The main purpose is for caching GL objects such as shader programs, which
  119. will become invalid when the context is deleted.
  120. This method must only be called from within the GL rendering methods.
  121. */
  122. void setAssociatedObject (const char* name, ReferenceCountedObject* newObject);
  123. //==============================================================================
  124. /** Makes this context the currently active one.
  125. You should never need to call this in normal use - the context will already be
  126. active when OpenGLRenderer::renderOpenGL() is invoked.
  127. */
  128. bool makeActive() const noexcept;
  129. /** Returns true if this context is currently active for the calling thread. */
  130. bool isActive() const noexcept;
  131. /** If any context is active on the current thread, this deactivates it.
  132. Note that on some platforms, like Android, this isn't possible.
  133. */
  134. static void deactivateCurrentContext();
  135. /** Returns the context that's currently in active use by the calling thread, or
  136. nullptr if no context is active.
  137. */
  138. static OpenGLContext* getCurrentContext();
  139. //==============================================================================
  140. /** Swaps the buffers (if the context can do this).
  141. There's normally no need to call this directly - the buffers will be swapped
  142. automatically after your OpenGLRenderer::renderOpenGL() method has been called.
  143. */
  144. void swapBuffers();
  145. /** Sets whether the context checks the vertical sync before swapping.
  146. The value is the number of frames to allow between buffer-swapping. This is
  147. fairly system-dependent, but 0 turns off syncing, 1 makes it swap on frame-boundaries,
  148. and greater numbers indicate that it should swap less often.
  149. By default, this will be set to 1.
  150. Returns true if it sets the value successfully - some platforms won't support
  151. this setting.
  152. @see setContinuousRepainting
  153. */
  154. bool setSwapInterval (int numFramesPerSwap);
  155. /** Returns the current swap-sync interval.
  156. See setSwapInterval() for info about the value returned.
  157. */
  158. int getSwapInterval() const;
  159. //==============================================================================
  160. /** Returns the scale factor used by the display that is being rendered.
  161. The scale is that of the display - see Desktop::Displays::Display::scale
  162. Note that this should only be called during an OpenGLRenderer::renderOpenGL()
  163. callback - at other times the value it returns is undefined.
  164. */
  165. double getRenderingScale() const noexcept { return currentRenderScale; }
  166. //==============================================================================
  167. /** If this context is backed by a frame buffer, this returns its ID number,
  168. or 0 if the context does not use a framebuffer.
  169. */
  170. unsigned int getFrameBufferID() const noexcept;
  171. /** Returns an OS-dependent handle to some kind of underlting OS-provided GL context.
  172. The exact type of the value returned will depend on the OS and may change
  173. if the implementation changes. If you want to use this, digging around in the
  174. native code is probably the best way to find out what it is.
  175. */
  176. void* getRawContext() const noexcept;
  177. /** This structure holds a set of dynamically loaded GL functions for use on this context. */
  178. OpenGLExtensionFunctions extensions;
  179. //==============================================================================
  180. /** Draws the currently selected texture into this context at its original size.
  181. @param targetClipArea the target area to draw into (in top-left origin coords)
  182. @param anchorPosAndTextureSize the position of this rectangle is the texture's top-left
  183. anchor position in the target space, and the size must be
  184. the total size of the texture.
  185. @param contextWidth the width of the context or framebuffer that is being drawn into,
  186. used for scaling of the coordinates.
  187. @param contextHeight the height of the context or framebuffer that is being drawn into,
  188. used for vertical flipping of the y coordinates.
  189. @param textureOriginIsBottomLeft if true, the texture's origin is treated as being at
  190. (0, 0). If false, it is assumed to be (0, 1)
  191. */
  192. void copyTexture (const Rectangle<int>& targetClipArea,
  193. const Rectangle<int>& anchorPosAndTextureSize,
  194. int contextWidth, int contextHeight,
  195. bool textureOriginIsBottomLeft);
  196. //==============================================================================
  197. #ifndef DOXYGEN
  198. class NativeContext;
  199. #endif
  200. private:
  201. class CachedImage;
  202. class Attachment;
  203. NativeContext* nativeContext;
  204. OpenGLRenderer* renderer;
  205. double currentRenderScale;
  206. ScopedPointer<Attachment> attachment;
  207. OpenGLPixelFormat pixelFormat;
  208. void* contextToShareWith;
  209. bool renderComponents, useMultisampling, continuousRepaint;
  210. CachedImage* getCachedImage() const noexcept;
  211. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (OpenGLContext)
  212. };
  213. #endif // JUCE_OPENGLCONTEXT_H_INCLUDED