while working on #280 I noticed that rlgl had some const defs that probably could be enums (for example rl_lines, rl_triangles, and rl_quads, are the modes which are passed into rlBegin). however looking at raylib they #define them, rather than using an enum, so how it is currently is the more faithful translation of the literal code, even if an enum might be more appropriate. If you agree that the consts-that-are-enums should be converted over I would be willing to make those changes, but I didn't want to do the work if you were happy with how it currently is, especially since this would be a breaking change.
while working on #280 I noticed that rlgl had some const defs that probably could be enums (for example
rl_lines,rl_triangles, andrl_quads, are the modes which are passed intorlBegin). however looking at raylib they #define them, rather than using an enum, so how it is currently is the more faithful translation of the literal code, even if an enum might be more appropriate. If you agree that the consts-that-are-enums should be converted over I would be willing to make those changes, but I didn't want to do the work if you were happy with how it currently is, especially since this would be a breaking change.