diff options
author | Erik Faye-Lund <[email protected]> | 2019-06-06 10:16:36 +0200 |
---|---|---|
committer | Erik Faye-Lund <[email protected]> | 2019-06-06 17:51:45 +0000 |
commit | 205f960e08d7b13ea529782e0e744c657bf1771f (patch) | |
tree | 6d114398ef8018c184a08a91f077d756c9df635a /docs/faq.html | |
parent | 54b7a1f17599883c6a2aa78b9d6669c3b00ec55b (diff) |
docs: add missing code-tags
Looks like I missed a few cases when I recently added more code-tags
here. So let's add these cases as well.
Signed-off-by: Erik Faye-Lund <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'docs/faq.html')
-rw-r--r-- | docs/faq.html | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/docs/faq.html b/docs/faq.html index 67eda94c10a..00c17ea840a 100644 --- a/docs/faq.html +++ b/docs/faq.html @@ -96,17 +96,17 @@ the Xlib API: <li>The GLX wire protocol is not supported and there's no OpenGL extension loaded by the X server. <li>There is no hardware acceleration. -<li>The OpenGL library, libGL.so, contains everything (the programming API, - the GLX functions and all the rendering code). +<li>The OpenGL library, <code>libGL.so</code>, contains everything (the + programming API, the GLX functions and all the rendering code). </ul> <p> Alternately, Mesa acts as the core for a number of OpenGL hardware drivers within the DRI (Direct Rendering Infrastructure): <ul> -<li>The libGL.so library provides the GL and GLX API functions, a GLX - protocol encoder, and a device driver loader. -<li>The device driver modules (such as r200_dri.so) contain a built-in - copy of the core Mesa code. +<li>The <code>libGL.so</code> library provides the GL and GLX API functions, + a GLX protocol encoder, and a device driver loader. +<li>The device driver modules (such as <code>r200_dri.so</code>) contain + a built-in copy of the core Mesa code. <li>The X server loads the GLX module. The GLX module decodes incoming GLX protocol and dispatches the commands to a rendering module. @@ -189,7 +189,8 @@ Mesa's not the solution. <h3>2.3 Where is the GLUT library?</h3> <p> -GLUT (OpenGL Utility Toolkit) is no longer in the separate MesaGLUT-x.y.z.tar.gz file. +GLUT (OpenGL Utility Toolkit) is no longer in the separate +<code>MesaGLUT-x.y.z.tar.gz</code> file. If you don't already have GLUT installed, you should grab <a href="http://freeglut.sourceforge.net/">freeglut</a>. </p> |