anv: implement VK_KHR_separate_depth_stencil_layouts
[mesa.git] / docs / codingstyle.html
index aa1e09cba32ad3dce39227a9e97f74710dace330..686d6a3ddf47e2afab0f123d11af78a38d43a697 100644 (file)
@@ -59,7 +59,7 @@ and not <code>a=b+c;</code>
 <li>
 <p>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="https://www.stack.nl/~dimitri/doxygen/">Doxygen</a> conventions.
+follow <a href="http://www.doxygen.nl">Doxygen</a> conventions.
 </p>
 Single-line comments:
 <pre>
@@ -132,7 +132,7 @@ should prefer the use of <code>bool</code>, <code>true</code>, and
 <code>false</code> over <code>GLboolean</code>, <code>GL_TRUE</code>, and
 <code>GL_FALSE</code>.  In C code, this may mean that
 <code>#include &lt;stdbool.h&gt;</code> needs to be added.  The
-<code>try_emit_</code>* methods in <code>src/mesa/program/ir_to_mesa.cpp</code>
+<code>try_emit_*</code> methods in <code>src/mesa/program/ir_to_mesa.cpp</code>
 and <code>src/mesa/state_tracker/st_glsl_to_tgsi.cpp</code> can serve as
 examples.