Cleanup: spelling in comments

This commit is contained in:
2022-01-26 16:06:22 +11:00
parent 94d2a611ec
commit b06fff4737
9 changed files with 17 additions and 13 deletions

View File

@@ -63,7 +63,10 @@ enum class Type {
};
enum class BuiltinBits {
/** Allow getting barycentic coordinates inside the fragment shader. NOTE: emulated on OpenGL. */
/**
* Allow getting barycentric coordinates inside the fragment shader.
* \note Emulated on OpenGL.
*/
BARYCENTRIC_COORD = (1 << 0),
FRAG_COORD = (1 << 2),
FRONT_FACING = (1 << 4),