Skip to content

Commit

Permalink
Fix Java FeatureLevel Enum (#7344)
Browse files Browse the repository at this point in the history
  • Loading branch information
bejado authored Nov 10, 2023
1 parent 1a0b5dd commit edbfefd
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,10 @@ public enum FeatureLevel {
FEATURE_LEVEL_0,
/** OpenGL ES 3.0 features (default) */
FEATURE_LEVEL_1,
/** OpenGL ES 3.1 features + 16 textures units + cubemap arrays */
FEATURE_LEVEL_2,
/** OpenGL ES 3.1 features + 31 textures units + cubemap arrays */
FEATURE_LEVEL_2
FEATURE_LEVEL_3,
};

/**
Expand Down

0 comments on commit edbfefd

Please sign in to comment.