Class ShaderBlockImpl<T>
java.lang.Object
foundry.veil.impl.client.render.shader.block.ShaderBlockImpl<T>
- Type Parameters:
T
- The type of object to serialize
- All Implemented Interfaces:
ShaderBlock<T>
,AutoCloseable
,org.lwjgl.system.NativeResource
- Direct Known Subclasses:
DynamicShaderBlockImpl
,SizedShaderBlockImpl
,WrapperShaderBlockImpl
Abstract implementation of
ShaderBlock
.-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface foundry.veil.api.client.render.shader.block.ShaderBlock
ShaderBlock.BufferBinding, ShaderBlock.MemoryLayout
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract void
bind
(int index) Binds this block to the specified index.void
free()
int
getIndex()
protected static ShaderBlockImpl.StorageType
getValue()
void
Sets the value of this block.void
setIndex
(int index) abstract void
unbind
(int index) Unbinds this block from the specified index.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.block.ShaderBlock
update
-
Field Details
-
binding
-
buffer
protected int buffer -
value
-
dirty
protected boolean dirty
-
-
Constructor Details
-
ShaderBlockImpl
-
-
Method Details
-
getStorageType
-
set
Description copied from interface:ShaderBlock
Sets the value of this block. Sets the value regardless if it has changed or not.- Specified by:
set
in interfaceShaderBlock<T>
- Parameters:
value
- The new value
-
bind
public abstract void bind(int index) Binds this block to the specified index.- Parameters:
index
- The index to bind this block to
-
unbind
public abstract void unbind(int index) Unbinds this block from the specified index.- Parameters:
index
- The index to unbind this block from
-
getBinding
-
getIndex
public int getIndex() -
getValue
- Specified by:
getValue
in interfaceShaderBlock<T>
- Returns:
- The value stored in this block
-
setIndex
public void setIndex(int index) -
free
public void free()- Specified by:
free
in interfaceorg.lwjgl.system.NativeResource
-