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.

162 lines
9.3KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2017 - ROLI Ltd.
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 5 End-User License
  8. Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
  9. 27th April 2017).
  10. End User License Agreement: www.juce.com/juce-5-licence
  11. Privacy Policy: www.juce.com/juce-5-privacy-policy
  12. Or: You may also use this code under the terms of the GPL v3 (see
  13. www.gnu.org/licenses).
  14. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  15. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  16. DISCLAIMED.
  17. ==============================================================================
  18. */
  19. namespace juce
  20. {
  21. /** @internal This macro contains a list of GL extension functions that need to be dynamically loaded on Windows/Linux.
  22. @see OpenGLExtensionFunctions
  23. */
  24. #define JUCE_GL_BASE_FUNCTIONS(USE_FUNCTION) \
  25. USE_FUNCTION (glActiveTexture, void, (GLenum p1), (p1))\
  26. USE_FUNCTION (glBindBuffer, void, (GLenum p1, GLuint p2), (p1, p2))\
  27. USE_FUNCTION (glDeleteBuffers, void, (GLsizei p1, const GLuint* p2), (p1, p2))\
  28. USE_FUNCTION (glGenBuffers, void, (GLsizei p1, GLuint* p2), (p1, p2))\
  29. USE_FUNCTION (glBufferData, void, (GLenum p1, GLsizeiptr p2, const GLvoid* p3, GLenum p4), (p1, p2, p3, p4))\
  30. USE_FUNCTION (glBufferSubData, void, (GLenum p1, GLintptr p2, GLsizeiptr p3, const GLvoid* p4), (p1, p2, p3, p4))\
  31. USE_FUNCTION (glCreateProgram, GLuint, (), ())\
  32. USE_FUNCTION (glDeleteProgram, void, (GLuint p1), (p1))\
  33. USE_FUNCTION (glCreateShader, GLuint, (GLenum p1), (p1))\
  34. USE_FUNCTION (glDeleteShader, void, (GLuint p1), (p1))\
  35. USE_FUNCTION (glShaderSource, void, (GLuint p1, GLsizei p2, const GLchar** p3, const GLint* p4), (p1, p2, p3, p4))\
  36. USE_FUNCTION (glCompileShader, void, (GLuint p1), (p1))\
  37. USE_FUNCTION (glAttachShader, void, (GLuint p1, GLuint p2), (p1, p2))\
  38. USE_FUNCTION (glLinkProgram, void, (GLuint p1), (p1))\
  39. USE_FUNCTION (glUseProgram, void, (GLuint p1), (p1))\
  40. USE_FUNCTION (glGetShaderiv, void, (GLuint p1, GLenum p2, GLint* p3), (p1, p2, p3))\
  41. USE_FUNCTION (glGetShaderInfoLog, void, (GLuint p1, GLsizei p2, GLsizei* p3, GLchar* p4), (p1, p2, p3, p4))\
  42. USE_FUNCTION (glGetProgramInfoLog, void, (GLuint p1, GLsizei p2, GLsizei* p3, GLchar* p4), (p1, p2, p3, p4))\
  43. USE_FUNCTION (glGetProgramiv, void, (GLuint p1, GLenum p2, GLint* p3), (p1, p2, p3))\
  44. USE_FUNCTION (glGetUniformLocation, GLint, (GLuint p1, const GLchar* p2), (p1, p2))\
  45. USE_FUNCTION (glGetAttribLocation, GLint, (GLuint p1, const GLchar* p2), (p1, p2))\
  46. USE_FUNCTION (glVertexAttribPointer, void, (GLuint p1, GLint p2, GLenum p3, GLboolean p4, GLsizei p5, const GLvoid* p6), (p1, p2, p3, p4, p5, p6))\
  47. USE_FUNCTION (glEnableVertexAttribArray, void, (GLuint p1), (p1))\
  48. USE_FUNCTION (glDisableVertexAttribArray, void, (GLuint p1), (p1))\
  49. USE_FUNCTION (glUniform1f, void, (GLint p1, GLfloat p2), (p1, p2))\
  50. USE_FUNCTION (glUniform1i, void, (GLint p1, GLint p2), (p1, p2))\
  51. USE_FUNCTION (glUniform2f, void, (GLint p1, GLfloat p2, GLfloat p3), (p1, p2, p3))\
  52. USE_FUNCTION (glUniform3f, void, (GLint p1, GLfloat p2, GLfloat p3, GLfloat p4), (p1, p2, p3, p4))\
  53. USE_FUNCTION (glUniform4f, void, (GLint p1, GLfloat p2, GLfloat p3, GLfloat p4, GLfloat p5), (p1, p2, p3, p4, p5))\
  54. USE_FUNCTION (glUniform4i, void, (GLint p1, GLint p2, GLint p3, GLint p4, GLint p5), (p1, p2, p3, p4, p5))\
  55. USE_FUNCTION (glUniform1fv, void, (GLint p1, GLsizei p2, const GLfloat* p3), (p1, p2, p3))\
  56. USE_FUNCTION (glUniformMatrix2fv, void, (GLint p1, GLsizei p2, GLboolean p3, const GLfloat* p4), (p1, p2, p3, p4))\
  57. USE_FUNCTION (glUniformMatrix3fv, void, (GLint p1, GLsizei p2, GLboolean p3, const GLfloat* p4), (p1, p2, p3, p4))\
  58. USE_FUNCTION (glUniformMatrix4fv, void, (GLint p1, GLsizei p2, GLboolean p3, const GLfloat* p4), (p1, p2, p3, p4))\
  59. USE_FUNCTION (glBindAttribLocation, void, (GLuint p1, GLuint p2, const GLchar* p3), (p1, p2, p3))
  60. /** @internal This macro contains a list of GL extension functions that need to be dynamically loaded on Windows/Linux.
  61. @see OpenGLExtensionFunctions
  62. */
  63. #define JUCE_GL_EXTENSION_FUNCTIONS(USE_FUNCTION) \
  64. USE_FUNCTION (glIsRenderbuffer, GLboolean, (GLuint p1), (p1))\
  65. USE_FUNCTION (glBindRenderbuffer, void, (GLenum p1, GLuint p2), (p1, p2))\
  66. USE_FUNCTION (glDeleteRenderbuffers, void, (GLsizei p1, const GLuint* p2), (p1, p2))\
  67. USE_FUNCTION (glGenRenderbuffers, void, (GLsizei p1, GLuint* p2), (p1, p2))\
  68. USE_FUNCTION (glRenderbufferStorage, void, (GLenum p1, GLenum p2, GLsizei p3, GLsizei p4), (p1, p2, p3, p4))\
  69. USE_FUNCTION (glGetRenderbufferParameteriv, void, (GLenum p1, GLenum p2, GLint* p3), (p1, p2, p3))\
  70. USE_FUNCTION (glIsFramebuffer, GLboolean, (GLuint p1), (p1))\
  71. USE_FUNCTION (glBindFramebuffer, void, (GLenum p1, GLuint p2), (p1, p2))\
  72. USE_FUNCTION (glDeleteFramebuffers, void, (GLsizei p1, const GLuint* p2), (p1, p2))\
  73. USE_FUNCTION (glGenFramebuffers, void, (GLsizei p1, GLuint* p2), (p1, p2))\
  74. USE_FUNCTION (glCheckFramebufferStatus, GLenum, (GLenum p1), (p1))\
  75. USE_FUNCTION (glFramebufferTexture2D, void, (GLenum p1, GLenum p2, GLenum p3, GLuint p4, GLint p5), (p1, p2, p3, p4, p5))\
  76. USE_FUNCTION (glFramebufferRenderbuffer, void, (GLenum p1, GLenum p2, GLenum p3, GLuint p4), (p1, p2, p3, p4))\
  77. USE_FUNCTION (glGetFramebufferAttachmentParameteriv, void, (GLenum p1, GLenum p2, GLenum p3, GLint* p4), (p1, p2, p3, p4))
  78. /** @internal This macro contains a list of GL extension functions that need to be dynamically loaded on Windows/Linux.
  79. @see OpenGLExtensionFunctions
  80. */
  81. #define JUCE_GL_VERTEXBUFFER_FUNCTIONS(USE_FUNCTION) \
  82. USE_FUNCTION (glGenVertexArrays, void, (GLsizei p1, GLuint* p2), (p1, p2))\
  83. USE_FUNCTION (glDeleteVertexArrays, void, (GLsizei p1, const GLuint* p2), (p1, p2))\
  84. USE_FUNCTION (glBindVertexArray, void, (GLuint p1), (p1))
  85. /** This class contains a generated list of OpenGL extension functions, which are either dynamically loaded
  86. for a specific GL context, or simply call-through to the appropriate OS function where available.
  87. @tags{OpenGL}
  88. */
  89. struct OpenGLExtensionFunctions
  90. {
  91. void initialise();
  92. #if JUCE_WINDOWS && ! DOXYGEN
  93. typedef char GLchar;
  94. typedef pointer_sized_int GLsizeiptr;
  95. typedef pointer_sized_int GLintptr;
  96. #endif
  97. //==============================================================================
  98. #if JUCE_WINDOWS
  99. #define JUCE_DECLARE_GL_FUNCTION(name, returnType, params, callparams) typedef returnType (__stdcall *type_ ## name) params; type_ ## name name;
  100. JUCE_GL_BASE_FUNCTIONS (JUCE_DECLARE_GL_FUNCTION)
  101. JUCE_GL_EXTENSION_FUNCTIONS (JUCE_DECLARE_GL_FUNCTION)
  102. #if JUCE_OPENGL3
  103. JUCE_GL_VERTEXBUFFER_FUNCTIONS (JUCE_DECLARE_GL_FUNCTION)
  104. #endif
  105. //==============================================================================
  106. #elif JUCE_LINUX
  107. #define JUCE_DECLARE_GL_FUNCTION(name, returnType, params, callparams) typedef returnType (*type_ ## name) params; type_ ## name name;
  108. JUCE_GL_BASE_FUNCTIONS (JUCE_DECLARE_GL_FUNCTION)
  109. JUCE_GL_EXTENSION_FUNCTIONS (JUCE_DECLARE_GL_FUNCTION)
  110. #if JUCE_OPENGL3
  111. JUCE_GL_VERTEXBUFFER_FUNCTIONS (JUCE_DECLARE_GL_FUNCTION)
  112. #endif
  113. //==============================================================================
  114. #elif JUCE_OPENGL_ES
  115. #define JUCE_DECLARE_GL_FUNCTION(name, returnType, params, callparams) static returnType name params noexcept;
  116. JUCE_GL_BASE_FUNCTIONS (JUCE_DECLARE_GL_FUNCTION)
  117. JUCE_GL_EXTENSION_FUNCTIONS (JUCE_DECLARE_GL_FUNCTION)
  118. JUCE_GL_VERTEXBUFFER_FUNCTIONS (JUCE_DECLARE_GL_FUNCTION)
  119. //==============================================================================
  120. #else
  121. #define JUCE_DECLARE_GL_FUNCTION(name, returnType, params, callparams) inline static returnType name params noexcept { return ::name callparams; }
  122. JUCE_GL_BASE_FUNCTIONS (JUCE_DECLARE_GL_FUNCTION)
  123. #ifndef GL3_PROTOTYPES
  124. #undef JUCE_DECLARE_GL_FUNCTION
  125. #define JUCE_DECLARE_GL_FUNCTION(name, returnType, params, callparams) inline static returnType name params noexcept { return ::name ## EXT callparams; }
  126. #endif
  127. JUCE_GL_EXTENSION_FUNCTIONS (JUCE_DECLARE_GL_FUNCTION)
  128. #if JUCE_OPENGL3
  129. #ifndef GL3_PROTOTYPES
  130. #undef JUCE_DECLARE_GL_FUNCTION
  131. #define JUCE_DECLARE_GL_FUNCTION(name, returnType, params, callparams) inline static returnType name params noexcept { return ::name ## APPLE callparams; }
  132. #endif
  133. JUCE_GL_VERTEXBUFFER_FUNCTIONS (JUCE_DECLARE_GL_FUNCTION)
  134. #endif
  135. #endif
  136. #undef JUCE_DECLARE_GL_FUNCTION
  137. };
  138. } // namespace juce