X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=docs%2Fcodingstyle.html;h=686d6a3ddf47e2afab0f123d11af78a38d43a697;hb=c1c346f1667375e9330aa3f729b97e4a6ece0320;hp=aa1e09cba32ad3dce39227a9e97f74710dace330;hpb=392c083377fca82ebfbdc559a6a0c6933df422db;p=mesa.git diff --git a/docs/codingstyle.html b/docs/codingstyle.html index aa1e09cba32..686d6a3ddf4 100644 --- a/docs/codingstyle.html +++ b/docs/codingstyle.html @@ -59,7 +59,7 @@ and not a=b+c;
  • Use comments wherever you think it would be helpful for other developers. Several specific cases and style examples follow. Note that we roughly -follow Doxygen conventions. +follow Doxygen conventions.

    Single-line comments:
    @@ -132,7 +132,7 @@ should prefer the use of bool, true, and
     false over GLboolean, GL_TRUE, and
     GL_FALSE.  In C code, this may mean that
     #include <stdbool.h> needs to be added.  The
    -try_emit_* methods in src/mesa/program/ir_to_mesa.cpp
    +try_emit_* methods in src/mesa/program/ir_to_mesa.cpp
     and src/mesa/state_tracker/st_glsl_to_tgsi.cpp can serve as
     examples.