Difference between revisions of "GraphicsBuffer"

m
m
 
Line 2: Line 2:
 
Low-level data stored in graphics memory, including arrays of vertices, vertex indices, and custom collections of data accessible in [[Shader]]s.
 
Low-level data stored in graphics memory, including arrays of vertices, vertex indices, and custom collections of data accessible in [[Shader]]s.
  
Higher level graphics objects such as [[Mesh]]es, [[SpriteBatch]]es, and [[ParticleSystem]]s make use of GraphicsBuffers internally.
+
Higher level graphics objects such as [[Mesh]]es, [[SpriteBatch]]es, [[TextBatch]]es, and [[ParticleSystem]]s make use of GraphicsBuffers internally.
 
== Constructors ==
 
== Constructors ==
 
{{#ask: [[Category:Functions]] [[Constructs::GraphicsBuffer]]
 
{{#ask: [[Category:Functions]] [[Constructs::GraphicsBuffer]]

Latest revision as of 03:24, 9 February 2024

Available since LÖVE 12.0
This type is not supported in earlier versions.

Low-level data stored in graphics memory, including arrays of vertices, vertex indices, and custom collections of data accessible in Shaders.

Higher level graphics objects such as Meshes, SpriteBatches, TextBatches, and ParticleSystems make use of GraphicsBuffers internally.

Constructors

None.

Functions

GraphicsBuffer:clear Clears the entire GraphicsBuffer or a specified byte range within it to zero. Added since 12.0
GraphicsBuffer:getElementCount Gets the total number of array elements in this GraphicsBuffer. Added since 12.0
GraphicsBuffer:getElementStride Gets the size in bytes used by one array element of this GraphicsBuffer. Added since 12.0
GraphicsBuffer:getSize Gets the total size in bytes of the GraphicsBuffer's contents. Added since 12.0
Object:release Immediately destroys the object's Lua reference. Added since 11.0
Object:type Gets the type of the object as a string.
Object:typeOf Checks whether an object is of a certain type.

Enums

BufferDataFormat Data formats of individual array elements GraphicsBuffers and Meshes. Added since 12.0

Supertypes

See Also


Other Languages