Class FramebufferStack

java.lang.Object
foundry.veil.api.client.render.framebuffer.FramebufferStack

public class FramebufferStack extends Object
Pushes/pops the current state of the bound framebuffer. This enables restoring an older render state without having to assume the main framebuffer should be bound.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    Clears the entire framebuffer stack.
    static boolean
     
    static void
    pop(@Nullable net.minecraft.resources.ResourceLocation name)
    Pushes the current framebuffer and restores the previous state.
    static void
    push(@Nullable net.minecraft.resources.ResourceLocation name)
    Pushes the current framebuffer to the stack.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • FramebufferStack

      public FramebufferStack()
  • Method Details

    • push

      public static void push(@Nullable @Nullable net.minecraft.resources.ResourceLocation name)
      Pushes the current framebuffer to the stack.
      Parameters:
      name - The name of the buffer to pop
    • pop

      public static void pop(@Nullable @Nullable net.minecraft.resources.ResourceLocation name)
      Pushes the current framebuffer and restores the previous state. If the stack is empty, the main framebuffer is bound.
      Parameters:
      name - The name of the buffer to pop
    • clear

      public static void clear()
      Clears the entire framebuffer stack.
    • isEmpty

      public static boolean isEmpty()
      Returns:
      Whether there are any framebuffers on the stack