Enum Class EmptyShaderUniformAccess

java.lang.Object
java.lang.Enum<EmptyShaderUniformAccess>
foundry.veil.impl.client.render.shader.uniform.EmptyShaderUniformAccess
All Implemented Interfaces:
ShaderUniformAccess, Serializable, Comparable<EmptyShaderUniformAccess>, Constable

@Internal public enum EmptyShaderUniformAccess extends Enum<EmptyShaderUniformAccess> implements ShaderUniformAccess
  • Enum Constant Details

  • Method Details

    • values

      public static EmptyShaderUniformAccess[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static EmptyShaderUniformAccess valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • isValid

      public boolean isValid()
      Specified by:
      isValid in interface ShaderUniformAccess
      Returns:
      Whether this uniform is valid
    • 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