Skip to content

Commit

Permalink
Update VarType.java
Browse files Browse the repository at this point in the history
Update VarType.java
  • Loading branch information
capdevon authored Feb 19, 2024
1 parent 5f5cd5c commit b17f10d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions jme3-core/src/main/java/com/jme3/shader/VarType.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,9 @@ public enum VarType {
TextureArray(false, true, "sampler2DArray|sampler2DArrayShadow", TextureArray.class, Texture.class),
TextureCubeMap(false, true, "samplerCube", TextureCubeMap.class, Texture.class),
Int("int", int.class, Integer.class),
BufferObject(false, false, "custom", BufferObject.class);

UniformBufferObject(false, false, "custom", BufferObject.class),
ShaderStorageBufferObject(false, false, "custom", BufferObject.class);


private boolean usesMultiData = false;
private boolean textureType = false;
Expand Down

0 comments on commit b17f10d

Please sign in to comment.