vvopensource
|
Subclass of GLScene for working with vertex & frag shaders- just give it some shader strings and watch it go! More...
#import <GLShaderScene.h>
Inherits GLScene.
Inherited by ISFGLScene.
Properties | |
NSString * | vertexShaderString |
Set/get the vertex shader string. | |
NSString * | fragmentShaderString |
Set/get the fragment shader string. | |
GLenum | program |
the (GL) name of the program after the frag shaders have been compiled and linked | |
GLenum | vertexShader |
the (GL) name of the vertex shader after it's been compiled | |
GLenum | fragmentShader |
the (GL) name of the fragment shader after it's been compiled | |
![]() | |
NSSize | size |
Set the size at which this scene should render. | |
id | renderTarget |
Every time this scene renders, the "renderSelector" is called on "renderTarget". | |
SEL | renderSelector |
Every time this scene renders, the "renderSelector" is called on "renderTarget". You put your drawing code in the "renderSelector". | |
Additional Inherited Members | |
![]() | |
(id) | - initWithSharedContext: |
Init an instance of GLScene using the passed shared context. | |
(id) | - initWithSharedContext:sized: |
Init an instance of GLScene using the passed shared context. The GLScene will automatically be configured to render at the passed size. | |
(id) | - initWithSharedContext:pixelFormat: |
Init an instance of GLScene using the passed shared context and pixel format. | |
(id) | - initWithSharedContext:pixelFormat:sized: |
Init an instance of GLScene using the passed shared context and pixel format. The GLScene will automatically be configured to render at the passed size. | |
(VVBuffer *) | - allocAndRenderABuffer |
Allocate a VVBuffer of the appropriate size, renders into this buffer, and then return it. Probably the "main" rendering method. | |
(void) | - renderInMSAAFBO:colorRB:depthRB:fbo:colorTex:depthTex:target: |
This is the low-level rendering method- if you want to fool around with MSAA or build a leaner interface, you'll probably want to use this. More... | |
(void) | - setClearNSColor: |
Set the clear color from the passed NSColor. | |
(void) | - setClearColor: |
Set the clear color from the passed array of GLfloats. | |
(void) | - setClearColors:::: |
Set the clear color from the passed color values. | |
![]() | |
(NSMutableArray *) | + gpuVendorArray |
Returns an array of the GPUs currently accessible by the renderer accessible being used with this process. | |
(BOOL) | + integratedGPUFlag |
Returns a YES if you're using an integrated GPU. | |
(BOOL) | + nvidiaGPUFlag |
Returns a YES if you're using an NVIDIA GPU. | |
(GLuint) | + glDisplayMaskForAllScreens |
Returns a GL display mask that encompassess all your screens. | |
(NSOpenGLPixelFormat *) | + defaultPixelFormat |
Returns a default NSOpenGLPixelFormat instance. If you don't explicitly set a pixel format when creating your instances of GLScene (and its subclasses), this is the pixel format that will be used. | |
Subclass of GLScene for working with vertex & frag shaders- just give it some shader strings and watch it go!