rlGetGlTextureFormats method
Implementation
(int glInternalFormat, int glFormat, int glType) rlGetGlTextureFormats(
RlPixelFormat format,
) => run(
() => 'rlGetGlTextureFormats(${format.name})',
() {
final glInternalFormat = refUInt1();
final glFormat = refUInt2();
final glType = refUInt3();
rl.Rlgl.rlGetGlTextureFormats(
format.value,
glInternalFormat,
glFormat,
glType,
);
return (glInternalFormat.value, glFormat.value, glType.value);
},
);