public class ARBTransformFeedback3
extends java.lang.Object
This extension further extends the transform feedback capabilities provided by the EXT_transform_feedback, NV_transform_feedback, and
NV_transform_feedback2 extensions. Those extensions provided a new transform feedback mode, where selected vertex attributes can be recorded to
a buffer object for each primitive processed by the GL.
This extension provides increased flexibility in how vertex attributes can be written to buffer objects. Previous extensions allowed applications to record a set of attributes interleaved into a single buffer object (interleaved mode) or to record into multiple objects, but with only a single attribute per buffer (separate mode). This extension extends interleaved mode to write into multiple buffers, with multiple attributes per buffer. This capability is supported for all three styles of transform feedback:
EXT_transform_feedback), where a list of varyings is provided prior to linking a program object and is
used whenever that program object is used.NV_transform_feedback2), where "locations" of active varyings are queried after linking
and are then passed to a function that sets the active transform feedback varyings for the program object. Unlike the "EXT"-style mode, the set of
varyings to capture can be changed without relinking.NV_transform_feedback2), where applications specify a set of
canonical attribute enums/numbers to capture.Additionally, this extension adds new support for multiple separate vertex streams. New geometry shader functionality provided by the
ARB_gpu_shader5 and NV_gpu_program5 extensions allows geometry shaders to direct each vertex arbitrarily at a specified
vertex stream. For example, a geometry program might write each "regular" vertex it emits to one vertex stream while writing some per-primitive data it
computes to a second vertex stream. This extension allows applications to choose a vertex stream for each buffer object it writes to, and allows the
vertices written to each vertex stream to be recorded in separate buffer objects. Only one stream may be selected for rasterization, and in the initial
implementation, the geometry shader output topology must be POINTS if multiple streams are used. When geometry shaders are not used, or when an old
geometry shader not writing multiple streams is used, all vertices produced by the GL are directed at the stream numbered zero. The set of transform
feedback-related query targets is extended to accommodate multiple vertex streams, so it is possible to count the number of processed and recorded
primitives for each stream separately.
Requires OpenGL 3.0 or EXT_transform_feedback or NV_transform_feedback. Promoted to core in OpenGL 4.0.
| Modifier and Type | Field and Description |
|---|---|
static int |
GL_MAX_TRANSFORM_FEEDBACK_BUFFERS
Accepted by the
pname parameter of GetBooleanv, GetDoublev, GetIntegerv, and GetFloatv. |
static int |
GL_MAX_VERTEX_STREAMS
Accepted by the
pname parameter of GetBooleanv, GetDoublev, GetIntegerv, and GetFloatv. |
| Modifier and Type | Method and Description |
|---|---|
static void |
glBeginQueryIndexed(int target,
int index,
int id)
Begins a query object on an indexed target
|
static void |
glDrawTransformFeedbackStream(int mode,
int id,
int stream)
Renders primitives using a count derived from a specifed stream of a transform feedback object.
|
static void |
glEndQueryIndexed(int target,
int index)
Ends a query object on an indexed target
|
static int |
glGetQueryIndexedi(int target,
int index,
int pname)
Returns parameters of an indexed query object target.
|
static void |
glGetQueryIndexediv(int target,
int index,
int pname,
int[] params)
Array version of:
GetQueryIndexediv |
static void |
glGetQueryIndexediv(int target,
int index,
int pname,
java.nio.IntBuffer params)
Returns parameters of an indexed query object target.
|
static void |
nglGetQueryIndexediv(int target,
int index,
int pname,
long params)
Unsafe version of:
GetQueryIndexediv |
public static final int GL_MAX_TRANSFORM_FEEDBACK_BUFFERS
pname parameter of GetBooleanv, GetDoublev, GetIntegerv, and GetFloatv.public static final int GL_MAX_VERTEX_STREAMS
pname parameter of GetBooleanv, GetDoublev, GetIntegerv, and GetFloatv.public static void glDrawTransformFeedbackStream(int mode,
int id,
int stream)
mode - what kind of primitives to render. One of:POINTS | LINE_STRIP | LINE_LOOP | LINES | TRIANGLE_STRIP | TRIANGLE_FAN | TRIANGLES |
LINES_ADJACENCY | LINE_STRIP_ADJACENCY | TRIANGLES_ADJACENCY | TRIANGLE_STRIP_ADJACENCY | PATCHES | POLYGON | QUADS |
QUAD_STRIP |
id - the name of a transform feedback object from which to retrieve a primitive countstream - the index of the transform feedback stream from which to retrieve a primitive countpublic static void glBeginQueryIndexed(int target,
int index,
int id)
target - the target type of query object established between glBeginQueryIndexed and the subsequent EndQueryIndexed. One of:SAMPLES_PASSED | PRIMITIVES_GENERATED | TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN | TIME_ELAPSED |
TIMESTAMP | ANY_SAMPLES_PASSED | ANY_SAMPLES_PASSED_CONSERVATIVE |
index - the index of the query target upon which to begin the queryid - the name of a query objectpublic static void glEndQueryIndexed(int target,
int index)
target - the target type of query object to be concluded. One of:SAMPLES_PASSED | PRIMITIVES_GENERATED | TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN | TIME_ELAPSED |
TIMESTAMP | ANY_SAMPLES_PASSED | ANY_SAMPLES_PASSED_CONSERVATIVE |
index - the index of the query target upon which to end the querypublic static void nglGetQueryIndexediv(int target,
int index,
int pname,
long params)
GetQueryIndexedivpublic static void glGetQueryIndexediv(int target,
int index,
int pname,
java.nio.IntBuffer params)
target - a query object target. One of:SAMPLES_PASSED | PRIMITIVES_GENERATED | TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN | TIME_ELAPSED |
TIMESTAMP | ANY_SAMPLES_PASSED | ANY_SAMPLES_PASSED_CONSERVATIVE |
index - the index of the query object targetpname - the symbolic name of a query object target parameterparams - the requested datapublic static int glGetQueryIndexedi(int target,
int index,
int pname)
target - a query object target. One of:SAMPLES_PASSED | PRIMITIVES_GENERATED | TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN | TIME_ELAPSED |
TIMESTAMP | ANY_SAMPLES_PASSED | ANY_SAMPLES_PASSED_CONSERVATIVE |
index - the index of the query object targetpname - the symbolic name of a query object target parameterpublic static void glGetQueryIndexediv(int target,
int index,
int pname,
int[] params)
GetQueryIndexedivCopyright LWJGL. All Rights Reserved. License terms.