Class FramebufferStack
java.lang.Object
foundry.veil.api.client.render.framebuffer.FramebufferStack
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 -
Method Summary
Modifier and TypeMethodDescriptionstatic void
clear()
Clears the entire framebuffer stack.static boolean
isEmpty()
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.
-
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
-