Class ShaderUniformImpl

java.lang.Object
foundry.veil.impl.client.render.shader.uniform.ShaderUniformImpl
All Implemented Interfaces:
ShaderUniform, ShaderUniformAccess, AutoCloseable, org.lwjgl.system.NativeResource

@Internal public class ShaderUniformImpl extends Object implements ShaderUniform, org.lwjgl.system.NativeResource
  • Nested Class Summary

    Nested classes/interfaces inherited from interface foundry.veil.api.client.render.shader.uniform.ShaderUniform

    ShaderUniform.Type
  • Field Summary

    Fields inherited from interface foundry.veil.api.client.render.shader.uniform.ShaderUniformAccess

    EMPTY
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    int
     
    double
    Retrieves the value of this uniform as a double.
    void
    getDoubles(double[] dst, int offset, int length)
    Retrieves the values of this uniform as a double array and stores them in the specified array.
    float
    Retrieves the value of this uniform as a float.
    void
    getFloats(float[] dst, int offset, int length)
    Retrieves the values of this uniform as a float array and stores them in the specified array.
    int
    Retrieves the value of this uniform as an integer.
    void
    getInts(int[] dst, int offset, int length)
    Retrieves the values of this uniform as an int array and stores them in the specified array.
    int
     
    long
    Retrieves the value of this uniform as a long.
    void
    getLongs(long[] dst, int offset, int length)
    Retrieves the values of this uniform as a long array and stores them in the specified array.
    void
    getMatrix(CharSequence name, org.joml.Matrix2f value)
    Retrieves a matrix2x2 by the specified name
    void
    getMatrix(CharSequence name, org.joml.Matrix3f value)
    Retrieves a matrix3x3 by the specified name
    void
    getMatrix(CharSequence name, org.joml.Matrix3x2f value)
    Retrieves a matrix3x2 by the specified name
    void
    getMatrix(CharSequence name, org.joml.Matrix4f value)
    Retrieves a matrix4x4 by the specified name
    void
    getMatrix(CharSequence name, org.joml.Matrix4x3f value)
    Retrieves a matrix4x3 by the specified name
     
     
    void
    getVector(CharSequence name, org.joml.Vector2f... values)
    Retrieves an array of vectors by the specified name.
    void
    getVector(CharSequence name, org.joml.Vector3f... values)
    Retrieves an array of vectors by the specified name.
    void
    getVector(CharSequence name, org.joml.Vector4f... values)
    Retrieves an array of vectors by the specified name.
    void
    getVectori(CharSequence name, org.joml.Vector2i... values)
    Retrieves an array of vectors by the specified name.
    void
    getVectori(CharSequence name, org.joml.Vector3i... values)
    Retrieves an array of vectors by the specified name.
    void
    getVectori(CharSequence name, org.joml.Vector4i... values)
    Retrieves an array of vectors by the specified name.
    void
    Invalidates the uniform cache.
    void
     
    void
    set64Vectors(org.joml.Vector2dc... values)
    Sets an array of double vectors in the shader.
    void
    set64Vectors(org.joml.Vector3dc... values)
    Sets an array of double vectors in the shader.
    void
    set64Vectors(org.joml.Vector4dc... values)
    Sets an array of double vectors in the shader.
    void
    setDouble(double value)
    Sets a double in the shader.
    void
    setDoubles(double... values)
    Sets an array of doubles in the shader.
    void
    setFloat(float value)
    Sets a float in the shader.
    void
    setFloats(float... values)
    Sets an array of floats in the shader.
    void
    setInt(int value)
    Sets an integer in the shader.
    void
    setInts(int... values)
    Sets an array of integers in the shader.
    void
    setIVectors(org.joml.Vector2ic... values)
    Sets an array of integer vectors in the shader.
    void
    setIVectors(org.joml.Vector3ic... values)
    Sets an array of integer vectors in the shader.
    void
    setIVectors(org.joml.Vector4ic... values)
    Sets an array of integer vectors in the shader.
    void
    setLong(long value)
    Sets a long in the shader.
    void
    setLongs(long... values)
    Sets an array of longs in the shader.
    void
    setMatrix(org.joml.Matrix2dc value, boolean transpose)
    Sets a double matrix in the shader.
    void
    setMatrix(org.joml.Matrix2fc value, boolean transpose)
    Sets a matrix in the shader.
    void
    setMatrix(org.joml.Matrix3dc value, boolean transpose)
    Sets a double matrix in the shader.
    void
    setMatrix(org.joml.Matrix3fc value, boolean transpose)
    Sets a matrix in the shader.
    void
    setMatrix(org.joml.Matrix4dc value, boolean transpose)
    Sets a double matrix in the shader.
    void
    setMatrix(org.joml.Matrix4fc value, boolean transpose)
    Sets a matrix in the shader.
    void
    setMatrix2x3(org.joml.Matrix3x2dc value, boolean transpose)
    Sets a double matrix in the shader.
    void
    setMatrix2x3(org.joml.Matrix3x2fc value, boolean transpose)
    Sets a matrix in the shader.
    void
    setMatrix3x2(org.joml.Matrix3x2dc value, boolean transpose)
    Sets a double matrix in the shader.
    void
    setMatrix3x2(org.joml.Matrix3x2fc value, boolean transpose)
    Sets a matrix in the shader.
    void
    setMatrix3x4(org.joml.Matrix4x3dc value, boolean transpose)
    Sets a double matrix in the shader.
    void
    setMatrix3x4(org.joml.Matrix4x3fc value, boolean transpose)
    Sets a matrix in the shader.
    void
    setMatrix4x3(org.joml.Matrix4x3dc value, boolean transpose)
    Sets a double matrix in the shader.
    void
    setMatrix4x3(org.joml.Matrix4x3fc value, boolean transpose)
    Sets a matrix in the shader.
    void
    setVector(float x, float y)
    Sets a vector in the shader.
    void
    setVector(float x, float y, float z)
    Sets a vector in the shader.
    void
    setVector(float x, float y, float z, float w)
    Sets a vector in the shader.
    void
    setVector64(double x, double y)
    Sets a double vector in the shader.
    void
    setVector64(double x, double y, double z)
    Sets a double vector in the shader.
    void
    setVector64(double x, double y, double z, double w)
    Sets a double vector in the shader.
    void
    setVectorI(int x, int y)
    Sets an integer vector in the shader.
    void
    setVectorI(int x, int y, int z)
    Sets an integer vector in the shader.
    void
    setVectorI(int x, int y, int z, int w)
    Sets an integer vector in the shader.
    void
    setVectorI64(long x, long y)
    Sets a long vector in the shader.
    void
    setVectorI64(long x, long y, long z)
    Sets a long vector in the shader.
    void
    setVectorI64(long x, long y, long z, long w)
    Sets a long vector in the shader.
    void
    setVectors(org.joml.Vector2fc... values)
    Sets an array of vectors in the shader.
    void
    setVectors(org.joml.Vector3fc... values)
    Sets an array of vectors in the shader.
    void
    setVectors(org.joml.Vector4fc... values)
    Sets an array of vectors in the shader.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.lwjgl.system.NativeResource

    close

    Methods inherited from interface foundry.veil.api.client.render.shader.uniform.ShaderUniform

    getDoubles, getDoubles, getFloats, getFloats, getInts, getInts, getLongs, getLongs, isValid
  • Constructor Details

  • Method Details

    • set

      public void set(@Nullable ShaderUniformCache.Uniform uniform)
    • invalidateCache

      public void invalidateCache()
      Description copied from interface: ShaderUniform
      Invalidates the uniform cache.
      Specified by:
      invalidateCache in interface ShaderUniform
    • getName

      public String getName()
      Specified by:
      getName in interface ShaderUniform
      Returns:
      The name assigned to this uniform in the shader
    • getLocation

      public int getLocation()
      Specified by:
      getLocation in interface ShaderUniform
      Returns:
      The location of the uniform in the shader
    • getType

      public ShaderUniform.Type getType()
      Specified by:
      getType in interface ShaderUniform
      Returns:
      The data type of this uniform in the shader
    • getArrayLength

      public int getArrayLength()
      Specified by:
      getArrayLength in interface ShaderUniform
      Returns:
      The number of array elements in the uniform
    • getFloat

      public float getFloat()
      Description copied from interface: ShaderUniform
      Retrieves the value of this uniform as a float.
      Specified by:
      getFloat in interface ShaderUniform
      Returns:
      The float value of this uniform
    • getFloats

      public void getFloats(float[] dst, int offset, int length)
      Description copied from interface: ShaderUniform
      Retrieves the values of this uniform as a float array and stores them in the specified array.
      Specified by:
      getFloats in interface ShaderUniform
      Parameters:
      dst - The array to fill
      offset - The position to start filling the array at
      length - The number of values to read
    • getInt

      public int getInt()
      Description copied from interface: ShaderUniform
      Retrieves the value of this uniform as an integer.
      Specified by:
      getInt in interface ShaderUniform
      Returns:
      The int value of this uniform
    • getInts

      public void getInts(int[] dst, int offset, int length)
      Description copied from interface: ShaderUniform
      Retrieves the values of this uniform as an int array and stores them in the specified array.
      Specified by:
      getInts in interface ShaderUniform
      Parameters:
      dst - The array to fill
      offset - The position to start filling the array at
      length - The number of values to read
    • getDouble

      public double getDouble()
      Description copied from interface: ShaderUniform
      Retrieves the value of this uniform as a double.
      Specified by:
      getDouble in interface ShaderUniform
      Returns:
      The int value of this uniform
    • getDoubles

      public void getDoubles(double[] dst, int offset, int length)
      Description copied from interface: ShaderUniform
      Retrieves the values of this uniform as a double array and stores them in the specified array.
      Specified by:
      getDoubles in interface ShaderUniform
      Parameters:
      dst - The array to fill
      offset - The position to start filling the array at
      length - The number of values to read
    • getLong

      public long getLong()
      Description copied from interface: ShaderUniform
      Retrieves the value of this uniform as a long.
      Specified by:
      getLong in interface ShaderUniform
      Returns:
      The int value of this uniform
    • getLongs

      public void getLongs(long[] dst, int offset, int length)
      Description copied from interface: ShaderUniform
      Retrieves the values of this uniform as a long array and stores them in the specified array.
      Specified by:
      getLongs in interface ShaderUniform
      Parameters:
      dst - The array to fill
      offset - The position to start filling the array at
      length - The number of values to read
    • getVector

      public void getVector(CharSequence name, org.joml.Vector2f... values)
      Description copied from interface: ShaderUniform
      Retrieves an array of vectors by the specified name.
      Specified by:
      getVector in interface ShaderUniform
      Parameters:
      name - The name of the uniform to get
      values - The values to set
    • getVector

      public void getVector(CharSequence name, org.joml.Vector3f... values)
      Description copied from interface: ShaderUniform
      Retrieves an array of vectors by the specified name.
      Specified by:
      getVector in interface ShaderUniform
      Parameters:
      name - The name of the uniform to get
      values - The values to set
    • getVector

      public void getVector(CharSequence name, org.joml.Vector4f... values)
      Description copied from interface: ShaderUniform
      Retrieves an array of vectors by the specified name.
      Specified by:
      getVector in interface ShaderUniform
      Parameters:
      name - The name of the uniform to get
      values - The values to set
    • getVectori

      public void getVectori(CharSequence name, org.joml.Vector2i... values)
      Description copied from interface: ShaderUniform
      Retrieves an array of vectors by the specified name.
      Specified by:
      getVectori in interface ShaderUniform
      Parameters:
      name - The name of the uniform to get
      values - The values to set
    • getVectori

      public void getVectori(CharSequence name, org.joml.Vector3i... values)
      Description copied from interface: ShaderUniform
      Retrieves an array of vectors by the specified name.
      Specified by:
      getVectori in interface ShaderUniform
      Parameters:
      name - The name of the uniform to get
      values - The values to set
    • getVectori

      public void getVectori(CharSequence name, org.joml.Vector4i... values)
      Description copied from interface: ShaderUniform
      Retrieves an array of vectors by the specified name.
      Specified by:
      getVectori in interface ShaderUniform
      Parameters:
      name - The name of the uniform to get
      values - The values to set
    • getMatrix

      public void getMatrix(CharSequence name, org.joml.Matrix2f value)
      Description copied from interface: ShaderUniform
      Retrieves a matrix2x2 by the specified name
      Specified by:
      getMatrix in interface ShaderUniform
      Parameters:
      name - The name of the uniform to get
      value - The value to set
    • getMatrix

      public void getMatrix(CharSequence name, org.joml.Matrix3f value)
      Description copied from interface: ShaderUniform
      Retrieves a matrix3x3 by the specified name
      Specified by:
      getMatrix in interface ShaderUniform
      Parameters:
      name - The name of the uniform to get
      value - The value to set
    • getMatrix

      public void getMatrix(CharSequence name, org.joml.Matrix4f value)
      Description copied from interface: ShaderUniform
      Retrieves a matrix4x4 by the specified name
      Specified by:
      getMatrix in interface ShaderUniform
      Parameters:
      name - The name of the uniform to get
      value - The value to set
    • getMatrix

      public void getMatrix(CharSequence name, org.joml.Matrix3x2f value)
      Description copied from interface: ShaderUniform
      Retrieves a matrix3x2 by the specified name
      Specified by:
      getMatrix in interface ShaderUniform
      Parameters:
      name - The name of the uniform to get
      value - The value to set
    • getMatrix

      public void getMatrix(CharSequence name, org.joml.Matrix4x3f value)
      Description copied from interface: ShaderUniform
      Retrieves a matrix4x3 by the specified name
      Specified by:
      getMatrix in interface ShaderUniform
      Parameters:
      name - The name of the uniform to get
      value - The value to set
    • free

      public void free()
      Specified by:
      free in interface org.lwjgl.system.NativeResource
    • setFloat

      public void setFloat(float value)
      Description copied from interface: ShaderUniformAccess
      Sets a float in the shader.
      Specified by:
      setFloat in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setVector

      public void setVector(float x, float y)
      Description copied from interface: ShaderUniformAccess
      Sets a vector in the shader.
      Specified by:
      setVector in interface ShaderUniformAccess
      Parameters:
      x - The x component of the vector
      y - The y component of the vector
    • setVector

      public void setVector(float x, float y, float z)
      Description copied from interface: ShaderUniformAccess
      Sets a vector in the shader.
      Specified by:
      setVector in interface ShaderUniformAccess
      Parameters:
      x - The x component of the vector
      y - The y component of the vector
      z - The z component of the vector
    • setVector

      public void setVector(float x, float y, float z, float w)
      Description copied from interface: ShaderUniformAccess
      Sets a vector in the shader.
      Specified by:
      setVector in interface ShaderUniformAccess
      Parameters:
      x - The x component of the vector
      y - The y component of the vector
      z - The z component of the vector
      w - The w component of the vector
    • setInt

      public void setInt(int value)
      Description copied from interface: ShaderUniformAccess
      Sets an integer in the shader.
      Specified by:
      setInt in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setVectorI

      public void setVectorI(int x, int y)
      Description copied from interface: ShaderUniformAccess
      Sets an integer vector in the shader.
      Specified by:
      setVectorI in interface ShaderUniformAccess
      Parameters:
      x - The x component of the vector
      y - The y component of the vector
    • setVectorI

      public void setVectorI(int x, int y, int z)
      Description copied from interface: ShaderUniformAccess
      Sets an integer vector in the shader.
      Specified by:
      setVectorI in interface ShaderUniformAccess
      Parameters:
      x - The x component of the vector
      y - The y component of the vector
      z - The z component of the vector
    • setVectorI

      public void setVectorI(int x, int y, int z, int w)
      Description copied from interface: ShaderUniformAccess
      Sets an integer vector in the shader.
      Specified by:
      setVectorI in interface ShaderUniformAccess
      Parameters:
      x - The x component of the vector
      y - The y component of the vector
      z - The z component of the vector
      w - The w component of the vector
    • setDouble

      public void setDouble(double value)
      Description copied from interface: ShaderUniformAccess
      Sets a double in the shader.
      Specified by:
      setDouble in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setVector64

      public void setVector64(double x, double y)
      Description copied from interface: ShaderUniformAccess
      Sets a double vector in the shader.
      Specified by:
      setVector64 in interface ShaderUniformAccess
      Parameters:
      x - The x component of the vector
      y - The y component of the vector
    • setVector64

      public void setVector64(double x, double y, double z)
      Description copied from interface: ShaderUniformAccess
      Sets a double vector in the shader.
      Specified by:
      setVector64 in interface ShaderUniformAccess
      Parameters:
      x - The x component of the vector
      y - The y component of the vector
      z - The z component of the vector
    • setVector64

      public void setVector64(double x, double y, double z, double w)
      Description copied from interface: ShaderUniformAccess
      Sets a double vector in the shader.
      Specified by:
      setVector64 in interface ShaderUniformAccess
      Parameters:
      x - The x component of the vector
      y - The y component of the vector
      z - The z component of the vector
      w - The w component of the vector
    • setLong

      public void setLong(long value)
      Description copied from interface: ShaderUniformAccess
      Sets a long in the shader.
      Specified by:
      setLong in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setVectorI64

      public void setVectorI64(long x, long y)
      Description copied from interface: ShaderUniformAccess
      Sets a long vector in the shader.
      Specified by:
      setVectorI64 in interface ShaderUniformAccess
      Parameters:
      x - The x component of the vector
      y - The y component of the vector
    • setVectorI64

      public void setVectorI64(long x, long y, long z)
      Description copied from interface: ShaderUniformAccess
      Sets a long vector in the shader.
      Specified by:
      setVectorI64 in interface ShaderUniformAccess
      Parameters:
      x - The x component of the vector
      y - The y component of the vector
      z - The z component of the vector
    • setVectorI64

      public void setVectorI64(long x, long y, long z, long w)
      Description copied from interface: ShaderUniformAccess
      Sets a long vector in the shader.
      Specified by:
      setVectorI64 in interface ShaderUniformAccess
      Parameters:
      x - The x component of the vector
      y - The y component of the vector
      z - The z component of the vector
      w - The w component of the vector
    • setFloats

      public void setFloats(float... values)
      Description copied from interface: ShaderUniformAccess
      Sets an array of floats in the shader.
      Specified by:
      setFloats in interface ShaderUniformAccess
      Parameters:
      values - The values to set in order
    • setVectors

      public void setVectors(org.joml.Vector2fc... values)
      Description copied from interface: ShaderUniformAccess
      Sets an array of vectors in the shader.
      Specified by:
      setVectors in interface ShaderUniformAccess
      Parameters:
      values - The values to set in order
    • setVectors

      public void setVectors(org.joml.Vector3fc... values)
      Description copied from interface: ShaderUniformAccess
      Sets an array of vectors in the shader.
      Specified by:
      setVectors in interface ShaderUniformAccess
      Parameters:
      values - The values to set in order
    • setVectors

      public void setVectors(org.joml.Vector4fc... values)
      Description copied from interface: ShaderUniformAccess
      Sets an array of vectors in the shader.
      Specified by:
      setVectors in interface ShaderUniformAccess
      Parameters:
      values - The values to set in order
    • setInts

      public void setInts(int... values)
      Description copied from interface: ShaderUniformAccess
      Sets an array of integers in the shader.
      Specified by:
      setInts in interface ShaderUniformAccess
      Parameters:
      values - The values to set in order
    • setIVectors

      public void setIVectors(org.joml.Vector2ic... values)
      Description copied from interface: ShaderUniformAccess
      Sets an array of integer vectors in the shader.
      Specified by:
      setIVectors in interface ShaderUniformAccess
      Parameters:
      values - The values to set in order
    • setIVectors

      public void setIVectors(org.joml.Vector3ic... values)
      Description copied from interface: ShaderUniformAccess
      Sets an array of integer vectors in the shader.
      Specified by:
      setIVectors in interface ShaderUniformAccess
      Parameters:
      values - The values to set in order
    • setIVectors

      public void setIVectors(org.joml.Vector4ic... values)
      Description copied from interface: ShaderUniformAccess
      Sets an array of integer vectors in the shader.
      Specified by:
      setIVectors in interface ShaderUniformAccess
      Parameters:
      values - The values to set in order
    • setDoubles

      public void setDoubles(double... values)
      Description copied from interface: ShaderUniformAccess
      Sets an array of doubles in the shader.
      Specified by:
      setDoubles in interface ShaderUniformAccess
      Parameters:
      values - The values to set in order
    • set64Vectors

      public void set64Vectors(org.joml.Vector2dc... values)
      Description copied from interface: ShaderUniformAccess
      Sets an array of double vectors in the shader.
      Specified by:
      set64Vectors in interface ShaderUniformAccess
      Parameters:
      values - The values to set in order
    • set64Vectors

      public void set64Vectors(org.joml.Vector3dc... values)
      Description copied from interface: ShaderUniformAccess
      Sets an array of double vectors in the shader.
      Specified by:
      set64Vectors in interface ShaderUniformAccess
      Parameters:
      values - The values to set in order
    • set64Vectors

      public void set64Vectors(org.joml.Vector4dc... values)
      Description copied from interface: ShaderUniformAccess
      Sets an array of double vectors in the shader.
      Specified by:
      set64Vectors in interface ShaderUniformAccess
      Parameters:
      values - The values to set in order
    • setLongs

      public void setLongs(long... values)
      Description copied from interface: ShaderUniformAccess
      Sets an array of longs in the shader.
      Specified by:
      setLongs in interface ShaderUniformAccess
      Parameters:
      values - The values to set in order
    • setMatrix

      public void setMatrix(org.joml.Matrix2fc value, boolean transpose)
      Description copied from interface: ShaderUniformAccess
      Sets a matrix in the shader.
      Specified by:
      setMatrix in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setMatrix

      public void setMatrix(org.joml.Matrix3fc value, boolean transpose)
      Description copied from interface: ShaderUniformAccess
      Sets a matrix in the shader.
      Specified by:
      setMatrix in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setMatrix

      public void setMatrix(org.joml.Matrix4fc value, boolean transpose)
      Description copied from interface: ShaderUniformAccess
      Sets a matrix in the shader.
      Specified by:
      setMatrix in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setMatrix2x3

      public void setMatrix2x3(org.joml.Matrix3x2fc value, boolean transpose)
      Description copied from interface: ShaderUniformAccess
      Sets a matrix in the shader.
      Specified by:
      setMatrix2x3 in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setMatrix3x2

      public void setMatrix3x2(org.joml.Matrix3x2fc value, boolean transpose)
      Description copied from interface: ShaderUniformAccess
      Sets a matrix in the shader.
      Specified by:
      setMatrix3x2 in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setMatrix3x4

      public void setMatrix3x4(org.joml.Matrix4x3fc value, boolean transpose)
      Description copied from interface: ShaderUniformAccess
      Sets a matrix in the shader.
      Specified by:
      setMatrix3x4 in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setMatrix4x3

      public void setMatrix4x3(org.joml.Matrix4x3fc value, boolean transpose)
      Description copied from interface: ShaderUniformAccess
      Sets a matrix in the shader.
      Specified by:
      setMatrix4x3 in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setMatrix

      public void setMatrix(org.joml.Matrix2dc value, boolean transpose)
      Description copied from interface: ShaderUniformAccess
      Sets a double matrix in the shader.
      Specified by:
      setMatrix in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setMatrix

      public void setMatrix(org.joml.Matrix3dc value, boolean transpose)
      Description copied from interface: ShaderUniformAccess
      Sets a double matrix in the shader.
      Specified by:
      setMatrix in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setMatrix

      public void setMatrix(org.joml.Matrix4dc value, boolean transpose)
      Description copied from interface: ShaderUniformAccess
      Sets a double matrix in the shader.
      Specified by:
      setMatrix in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setMatrix2x3

      public void setMatrix2x3(org.joml.Matrix3x2dc value, boolean transpose)
      Description copied from interface: ShaderUniformAccess
      Sets a double matrix in the shader.
      Specified by:
      setMatrix2x3 in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setMatrix3x2

      public void setMatrix3x2(org.joml.Matrix3x2dc value, boolean transpose)
      Description copied from interface: ShaderUniformAccess
      Sets a double matrix in the shader.
      Specified by:
      setMatrix3x2 in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setMatrix3x4

      public void setMatrix3x4(org.joml.Matrix4x3dc value, boolean transpose)
      Description copied from interface: ShaderUniformAccess
      Sets a double matrix in the shader.
      Specified by:
      setMatrix3x4 in interface ShaderUniformAccess
      Parameters:
      value - The value to set
    • setMatrix4x3

      public void setMatrix4x3(org.joml.Matrix4x3dc value, boolean transpose)
      Description copied from interface: ShaderUniformAccess
      Sets a double matrix in the shader.
      Specified by:
      setMatrix4x3 in interface ShaderUniformAccess
      Parameters:
      value - The value to set