etnaviv: switch magic single buffer state to "3"
[mesa.git] / docs / codingstyle.html
index 4dfb0cc02f0bbb84e1729ea1ef98647632f2ff52..7e9f470a1005d39320e0fdc8be75fea945a9832b 100644 (file)
@@ -58,7 +58,7 @@ and not <tt>a=b+c;</tt>
 
 <li>Use comments wherever you think it would be helpful for other developers.
 Several specific cases and style examples follow.  Note that we roughly
-follow <a href="http://www.stack.nl/~dimitri/doxygen/">Doxygen</a> conventions.
+follow <a href="https://www.stack.nl/~dimitri/doxygen/">Doxygen</a> conventions.
 <br>
 <br>
 Single-line comments:
@@ -120,7 +120,7 @@ the opening brace goes on the next line by itself (see above.)
    _mesa_foo_bar()  - an internal non-static Mesa function
 </pre>
 
-<li>Constants, macros and enumerant names are ALL_UPPERCASE, with _ between
+<li>Constants, macros and enum names are ALL_UPPERCASE, with _ between
 words.
 <li>Mesa usually uses camel case for local variables (Ex: "localVarname")
 while gallium typically uses underscores (Ex: "local_var_name").