Interface ShaderProgram

All Superinterfaces:
AutoCloseable, MutableUniformAccess, org.lwjgl.system.NativeResource, TextureUniformAccess, UniformAccess
All Known Implementing Classes:
DynamicShaderProgramImpl, ShaderProgramImpl

public interface ShaderProgram extends org.lwjgl.system.NativeResource, MutableUniformAccess, TextureUniformAccess
Represents a usable shader program with shaders attached.
  • Method Details

    • bind

      default void bind()
      Binds this program for use.
    • unbind

      static void unbind()
      Unbinds the currently bound shader program.
    • setDefaultUniforms

      default void setDefaultUniforms(com.mojang.blaze3d.vertex.VertexFormat.Mode mode)
      Sets the default uniforms in this shader.
      Parameters:
      mode - The expected draw mode
    • setDefaultUniforms

      void setDefaultUniforms(com.mojang.blaze3d.vertex.VertexFormat.Mode mode, org.joml.Matrix4fc modelViewMatrix, org.joml.Matrix4fc projectionMatrix)
      Sets the default uniforms in this shader.
      Parameters:
      mode - The expected draw mode
      modelViewMatrix - The view matrix transform
      projectionMatrix - The projection matrix transform
    • getProgram

      int getProgram()
      Returns:
      The OpenGL id of this program
    • getUniform

      ShaderUniform getUniform(CharSequence name)
      Description copied from interface: UniformAccess
      Retrieves a uniform by name.
      Specified by:
      getUniform in interface UniformAccess
      Parameters:
      name - The name of the uniform to get
      Returns:
      The uniform with that name or null if the uniform does not exist
    • getOrCreateUniform

      ShaderUniform getOrCreateUniform(CharSequence name)
      Description copied from interface: UniformAccess
      Retrieves a uniform by name or creates a reference to one that may exist in the future.
      Specified by:
      getOrCreateUniform in interface UniformAccess
      Parameters:
      name - The name of the uniform to get
      Returns:
      The uniform instance
    • setUniformBlock

      default void setUniformBlock(CharSequence name, int binding)
      Description copied from interface: MutableUniformAccess
      Sets the binding to use for the specified uniform block.
      Specified by:
      setUniformBlock in interface MutableUniformAccess
      Parameters:
      name - The name of the block to set
      binding - The binding to use for that block
    • setStorageBlock

      default void setStorageBlock(CharSequence name, int binding)
      Description copied from interface: MutableUniformAccess
      Sets the binding to use for the specified storage block.
      Specified by:
      setStorageBlock in interface MutableUniformAccess
      Parameters:
      name - The name of the block to set
      binding - The binding to use for that block
    • getDefinition

      @Nullable @Nullable ProgramDefinition getDefinition()
      Returns:
      The definition used to compile the latest version of this shader
    • getShaders

      it.unimi.dsi.fastutil.ints.Int2ObjectMap<CompiledShader> getShaders()
      Returns:
      The shaders attached to this program
    • hasVertex

      default boolean hasVertex()
      Returns:
      Whether this program has the vertex stage
    • hasGeometry

      default boolean hasGeometry()
      Returns:
      Whether this program has the geometry stage
    • hasFragment

      default boolean hasFragment()
      Returns:
      Whether this program has the fragment stage
    • hasTesselation

      default boolean hasTesselation()
      Returns:
      Whether this program has the tesselation stages
    • isCompute

      default boolean isCompute()
      Returns:
      Whether this program has the compute stage
    • getFormat

      @Nullable @Nullable com.mojang.blaze3d.vertex.VertexFormat getFormat()
      Returns:
      A guess at the best vertex format for this program
    • getDefinitionDependencies

      Set<String> getDefinitionDependencies()
      Returns:
      All shader definitions this program depends on
    • getName

      net.minecraft.resources.ResourceLocation getName()
      Returns:
      The name of this program
    • toShaderInstance

      @Deprecated net.minecraft.client.renderer.ShaderInstance toShaderInstance()

      Wraps this shader with a vanilla Minecraft shader instance wrapper. There are a few special properties about the shader wrapper.

      • The shader instance cannot be used to free the shader program. NativeResource.free() must be called separately. If the shader is loaded through ShaderManager then there is no need to free the shader.
      • Calling Uniform.upload() will do nothing since the values are uploaded when the appropriate methods are called
      • Uniforms are lazily wrapped and will not crash when the wrong method is called.
      • Uniform.set(int, float) is not supported and will throw an UnsupportedOperationException.
      • Uniform.set(float[]) only works for 1, 2, 3, and 4 float elements. Any other size will throw an UnsupportedOperationException.
      Returns:
      A lazily loaded shader instance wrapper for this program