You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In section 5.7 on page 124 of The OpenGL Shading Language, Version 4.60.8, the paragraph starting with "The arithmetic unary operators..." is incorrectly formatted resulting in missing symbols.
Preserving formatting as much as possible, what it currently looks like:
The arithmetic unary operators plus (*), negate (-), post- and pre-increment and decrement
(-- and *+) operate on integer or floating-point values (including vectors and matrices).
What (I believe) it should look like:
The arithmetic unary operators plus (+), negate (-), post- and pre-increment and decrement
(-- and ++) operate on integer or floating-point values (including vectors and matrices).
Image of the excerpt:
The text was updated successfully, but these errors were encountered:
Thanks. The operators on that line have been partially interpreted as markup during the spec generation, making the output totally incorrect. I've fixed the spec source so this will be fixed in the next release.
Some of the operators ('+' and '++') were being treated as asciidoctor
markup, so they were disappearing and some of the characters that were
supposed to be markup were appearing in their place. Fix by using the
builtin macro for '+' instead of the character.
Fixes Public GLSL issue KhronosGroup#214.
In section 5.7 on page 124 of The OpenGL Shading Language, Version 4.60.8, the paragraph starting with "The arithmetic unary operators..." is incorrectly formatted resulting in missing symbols.
Preserving formatting as much as possible, what it currently looks like:
The arithmetic unary operators plus (*), negate (-), post- and pre-increment and decrement
(-- and *+) operate on integer or floating-point values (including vectors and matrices).
What (I believe) it should look like:
The arithmetic unary operators plus (+), negate (-), post- and pre-increment and decrement
(-- and ++) operate on integer or floating-point values (including vectors and matrices).
Image of the excerpt:
The text was updated successfully, but these errors were encountered: