Uses of Enum Class
cz.fidentis.analyst.glsl.buffers.BufferDef
Packages that use BufferDef
Package
Description
Groups of GLSL buffers used together by GLSL programs and shaders.
Buffers defined for GLSL shaders and programs.
-
Uses of BufferDef in cz.fidentis.analyst.glsl.buffergroups
Methods in cz.fidentis.analyst.glsl.buffergroups with parameters of type BufferDefModifier and TypeMethodDescriptionboolean
GlslBufferGroup.bindBuffer
(BufferDef buffer) Bind a give buffer only, including non-SSBO buffers.GlslBufferGroup.getAtomicCounterBuffer
(BufferDef bufferName) Returns registered atomic counter buffer.GlslBufferGroup.getFrameBuffer
(BufferDef bufferName) Returns registered frame buffer.GlslBufferGroup.getImageBuffer
(BufferDef bufferName) Returns registered texture image buffer.GlslBufferGroup.getPixelUnpackBuffer
(BufferDef bufferName) Returns registered simple object buffer.GlslBufferGroup.getSSboBuffer
(BufferDef bufferName) Returns registered SSBO buffer.GlslBufferGroup.getTextureAdapterBuffer
(BufferDef bufferName) Returns registered texture adapter buffer. -
Uses of BufferDef in cz.fidentis.analyst.glsl.buffergroups.impl
Methods in cz.fidentis.analyst.glsl.buffergroups.impl with parameters of type BufferDefModifier and TypeMethodDescriptionboolean
AbstractBufferGroup.bindBuffer
(BufferDef buffer) AbstractBufferGroup.getAtomicCounterBuffer
(BufferDef bufferName) AbstractBufferGroup.getFrameBuffer
(BufferDef bufferName) AbstractBufferGroup.getImageBuffer
(BufferDef bufferName) AbstractBufferGroup.getPixelUnpackBuffer
(BufferDef bufferName) AbstractBufferGroup.getSSboBuffer
(BufferDef bufferName) AbstractBufferGroup.getTextureAdapterBuffer
(BufferDef bufferName) -
Uses of BufferDef in cz.fidentis.analyst.glsl.buffers
Methods in cz.fidentis.analyst.glsl.buffers that return BufferDefModifier and TypeMethodDescriptionGlslBuffer.getBufferName()
Returns buffer name (enum defined in this API)static BufferDef
Returns the enum constant of this class with the specified name.static BufferDef[]
BufferDef.values()
Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of BufferDef in cz.fidentis.analyst.glsl.buffers.impl
Methods in cz.fidentis.analyst.glsl.buffers.impl that return BufferDefConstructors in cz.fidentis.analyst.glsl.buffers.impl with parameters of type BufferDefModifierConstructorDescriptionAbstractBuffer
(BufferDef bufferName, com.jogamp.opengl.GLContext glContext, int glTarget) Constructor.AtomicCounterBufferImpl
(BufferDef bufferName, com.jogamp.opengl.GLContext glContext, int usage) Constructor.FrameBufferImpl
(BufferDef bufferDef, com.jogamp.opengl.GLContext glContext) Constructor.ImageBufferImpl
(BufferDef bufferName, com.jogamp.opengl.GLContext glContext, int internalFormat, int access) Constructor.PixelUnpackBufferImpl
(BufferDef bufferName, com.jogamp.opengl.GLContext glContext, int usage, long itemSize) Constructor.SsboBufferImpl
(BufferDef bufferName, com.jogamp.opengl.GLContext glContext, int usage, long itemSize) Constructor.protected
SsboBufferImpl
(BufferDef bufferName, com.jogamp.opengl.GLContext glContext, int usage, long itemSize, int target) Constructor.TextureBufferImpl
(BufferDef bufferName, com.jogamp.opengl.GLContext glContext, int internalFormat, int access) Constructor.