class new in Git master
#include <Magnum/Shaders/FlatGL.h>
Configuration Configuration.
Public functions
- auto flags() const -> Flags
- Flags.
- auto setFlags(Flags flags) -> Configuration&
- Set flags.
- auto jointCount() const -> UnsignedInt
- Joint count.
- auto perVertexJointCount() const -> UnsignedInt
- Per-vertex joint count.
- auto secondaryPerVertexJointCount() const -> UnsignedInt
- Secondary per-vertex joint count.
- auto setJointCount(UnsignedInt count, UnsignedInt perVertexCount, UnsignedInt secondaryPerVertexCount = 0) -> Configuration&
- Set joint count.
- auto materialCount() const -> UnsignedInt
- Material count.
- auto setMaterialCount(UnsignedInt count) -> Configuration&
- Set material count.
- auto drawCount() const -> UnsignedInt
- Draw count.
- auto setDrawCount(UnsignedInt count) -> Configuration&
- Set draw count.
Function documentation
Configuration& Magnum:: Shaders:: FlatGL:: Configuration:: setFlags(Flags flags)
Set flags.
No flags are set by default.
UnsignedInt Magnum:: Shaders:: FlatGL:: Configuration:: jointCount() const
Joint count.
UnsignedInt Magnum:: Shaders:: FlatGL:: Configuration:: perVertexJointCount() const
Per-vertex joint count.
UnsignedInt Magnum:: Shaders:: FlatGL:: Configuration:: secondaryPerVertexJointCount() const
Secondary per-vertex joint count.
Configuration& Magnum:: Shaders:: FlatGL:: Configuration:: setJointCount(UnsignedInt count,
UnsignedInt perVertexCount,
UnsignedInt secondaryPerVertexCount = 0)
Set joint count.
If Flag::count
describes an upper bound on how many joint matrices get supplied to each draw by setJointMatrices() / setJointMatrix().
If Flag::count
describes size of a TransformationUniform2D / TransformationUniform3D buffer bound with bindJointBuffer(). Uniform buffers have a statically defined size and count*sizeof(TransformationUniform2D)
/ count*sizeof(TransformationUniform3D)
has to be within GL::count
is ignored. The per-vertex joints index into the array offset by FlatDrawUniform::
The perVertexCount
and secondaryPerVertexCount
parameters describe how many components are taken from JointIds / Weights and SecondaryJointIds / SecondaryWeights attributes. Both values are expected to not be larger than 4
, setting either of these to 0
means given attribute is not used at all. If both perVertexCount
and secondaryPerVertexCount
are set to 0
, skinning is not performed. Unless Flag::count
is expected to be non-zero as well.
Default value for all three is 0
.
UnsignedInt Magnum:: Shaders:: FlatGL:: Configuration:: materialCount() const
Material count.
Configuration& Magnum:: Shaders:: FlatGL:: Configuration:: setMaterialCount(UnsignedInt count)
Set material count.
If Flag::count*sizeof(FlatMaterialUniform)
has to be within GL::count
is ignored. The per-draw materials are specified via FlatDrawUniform::1
.
If Flag::
UnsignedInt Magnum:: Shaders:: FlatGL:: Configuration:: drawCount() const
Draw count.
Configuration& Magnum:: Shaders:: FlatGL:: Configuration:: setDrawCount(UnsignedInt count)
Set draw count.
If Flag::count*sizeof(TransformationProjectionUniform2D)
/ count*sizeof(TransformationProjectionUniform3D)
, count*sizeof(FlatDrawUniform)
and count*sizeof(TextureTransformationUniform)
has to be within GL::count
is ignored. The draw offset is set via setDrawOffset(). Default value is 1
.
If Flag::