I originally learned OpenGL in C++. How do I create a GLfloat or a GLuint variable in LWJGL? I'm fairly new to Java so I'm not sure if I can just use Java's standard float or int variables for LWJGL.
It's just the standard Java float, int, and intrinsic types. LWJGL takes care of types for you.
Alright, thanks