Difference between revisions of "DesktopOpenGLSurface"
From Xojo Documentation
Line 11: | Line 11: | ||
{{Event | name=Configure | params=[[MemoryBlock]] | description=Configure(MemoryBlock)
For advanced configuration of the OpenGL context }} | {{Event | name=Configure | params=[[MemoryBlock]] | description=Configure(MemoryBlock)
For advanced configuration of the OpenGL context }} | ||
{{Event | name=Error | params=[[Boolean]] | description=Error(Boolean)
If OpenGLSurface cannot set up the OpenGL context properly, it will fire this event. }} | {{Event | name=Error | params=[[Boolean]] | description=Error(Boolean)
If OpenGLSurface cannot set up the OpenGL context properly, it will fire this event. }} | ||
− | {{Event | name=Render | + | {{Event | name=Render | description=Render()
Fires when you call the Render method. }} |
{{Event | name=Resized | description=Resized()
The area's size has changed. }} | {{Event | name=Resized | description=Resized()
The area's size has changed. }} | ||
</dynamicTable> | </dynamicTable> |
Latest revision as of 22:47, 17 December 2021
Class (inherits from DesktopUIControl)
Sets up OpenGL on all platforms and provides basic functionality. It does the basic setup of OpenGL on each platform. It's up to you to clear buffers and do all the OpenGL drawing.
Properties | |||||||||||||||||||||||||||
|
Methods | |||||||||
|
Notes
The DesktopOpenGLSurface control and the OpenGL module are based on the OpenGLSurface plug-in from Tinrocket, LLC at http://2002-2010.tinrocket.com/software/openglsurface/index.html.
The OpenGL module contains all the OpenGL calls, functions, and constants that you will need. See http://www.opengl.org/ for the OpenGL documentation. The online version of the Red Book for OpenGL 1.1 is available at http://www.glprogramming.com/red.
Additional information:
- OpenGL uses a per-thread context.
- All of the functions in the OpenGL module affect the current context.
- The current OpenGL context is undefined outside of an DesktopOpenGLSurface Opening, Resized or Render event.
- DesktopOpenGLSurface.MakeCurrent can be used to make a specific OpenGLCanvas the current context.
See Also
OpenGL module.