diff options
author | Erik Faye-Lund <[email protected]> | 2020-01-16 20:18:07 +0100 |
---|---|---|
committer | Erik Faye-Lund <[email protected]> | 2020-01-18 11:39:18 +0100 |
commit | 9954120b38e5dcff54bb73b0f0a56f158e050f35 (patch) | |
tree | 2d9c33b1b01689f351dfb4a09458ecc107565b10 /docs/llvmpipe.html | |
parent | c8718627443cd8cfde0b6969f6a2f1d9e6deb88b (diff) |
docs: remove leading spaces
There's no good reason to have leading space in these pre-formatted
blocks. It looks strange, so let's get rid of it.
Reviewed-by: Eric Engestrom <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3443>
Diffstat (limited to 'docs/llvmpipe.html')
-rw-r--r-- | docs/llvmpipe.html | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/docs/llvmpipe.html b/docs/llvmpipe.html index c7d0dd4652a..9f5bd0be445 100644 --- a/docs/llvmpipe.html +++ b/docs/llvmpipe.html @@ -56,7 +56,7 @@ It's the fastest software rasterizer for Mesa. For Linux, on a recent Debian based distribution do: </p> <pre> - aptitude install llvm-dev +aptitude install llvm-dev </pre> <p> If you want development snapshot builds of LLVM for Debian and derived @@ -68,7 +68,7 @@ It's the fastest software rasterizer for Mesa. For a RPM-based distribution do: </p> <pre> - yum install llvm-devel +yum install llvm-devel </pre> <p> @@ -120,15 +120,15 @@ It's the fastest software rasterizer for Mesa. To build everything on Linux invoke scons as: <pre> - scons build=debug libgl-xlib +scons build=debug libgl-xlib </pre> Alternatively, you can build it with meson with: <pre> - mkdir build - cd build - meson -D glx=gallium-xlib -D gallium-drivers=swrast - ninja +mkdir build +cd build +meson -D glx=gallium-xlib -D gallium-drivers=swrast +ninja </pre> but the rest of these instructions assume that scons is used. @@ -136,7 +136,7 @@ but the rest of these instructions assume that scons is used. For Windows the procedure is similar except the target: <pre> - scons platform=windows build=debug libgl-gdi +scons platform=windows build=debug libgl-gdi </pre> @@ -148,11 +148,11 @@ For Windows the procedure is similar except the target: <code>libGL.so</code> into</p> <pre> - build/foo/gallium/targets/libgl-xlib/libGL.so +build/foo/gallium/targets/libgl-xlib/libGL.so </pre> or <pre> - lib/gallium/libGL.so +lib/gallium/libGL.so </pre> <p>To use it set the <code>LD_LIBRARY_PATH</code> environment variable @@ -206,7 +206,7 @@ any OpenGL drivers): To profile llvmpipe you should build as </p> <pre> - scons build=profile <same-as-before> +scons build=profile <same-as-before> </pre> <p> @@ -221,8 +221,8 @@ On Linux, it is possible to have symbol resolution of JIT code with <a href="htt </p> <pre> - perf record -g /my/application - perf report +perf record -g /my/application +perf report </pre> <p> @@ -255,7 +255,7 @@ Some of these tests can output results and benchmarks to a tab-separated file for later analysis, e.g.: </p> <pre> - build/linux-x86_64-debug/gallium/drivers/llvmpipe/lp_test_blend -o blend.tsv +build/linux-x86_64-debug/gallium/drivers/llvmpipe/lp_test_blend -o blend.tsv </pre> |