util/hash_table: replace fnv1a hash function with xxhash
[mesa.git] / docs / shading.html
index 839a61a0361380dd00ff829aafe23e9f97f53b42..e36bab49c58373aba145ebbdf1d65a2ec9018484 100644 (file)
@@ -162,11 +162,11 @@ These issues will be addressed/resolved in the future.
 <li>Use the built-in library functions whenever possible.
     For example, instead of writing this:
 <pre>
-        float x = 1.0 / sqrt(y);
+float x = 1.0 / sqrt(y);
 </pre>
     Write this:
 <pre>
-        float x = inversesqrt(y);
+float x = inversesqrt(y);
 </pre>
 </li>
 </ul>