diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-12-11 08:37:01 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-12-11 08:37:01 +0000 |
commit | e4c140c4d4d00c16d99b15ee6677cbd2e3364031 (patch) | |
tree | 96364a9f799341ef8dff3d1534f1de0eb3a559b1 /lib/mesa/src/gallium/docs/source | |
parent | 10010c14c68222d4056694bf3643ee969d18cd4f (diff) |
Import Mesa 13.0.2
Diffstat (limited to 'lib/mesa/src/gallium/docs/source')
-rw-r--r-- | lib/mesa/src/gallium/docs/source/drivers/openswr.rst | 2 | ||||
-rw-r--r-- | lib/mesa/src/gallium/docs/source/drivers/openswr/usage.rst | 16 |
2 files changed, 6 insertions, 12 deletions
diff --git a/lib/mesa/src/gallium/docs/source/drivers/openswr.rst b/lib/mesa/src/gallium/docs/source/drivers/openswr.rst index e254d7bce..84aa51f5d 100644 --- a/lib/mesa/src/gallium/docs/source/drivers/openswr.rst +++ b/lib/mesa/src/gallium/docs/source/drivers/openswr.rst @@ -7,7 +7,7 @@ geometry heavy workloads there is a considerable speedup over llvmpipe, which is to be expected as the geometry frontend of llvmpipe is single threaded. -This rasterizer is x86 specific and requires AVX or above. The driver +This rasterizer is x86 specific and requires AVX or AVX2. The driver fits into the gallium framework, and reuses gallivm for doing the TGSI to vectorized llvm-IR conversion of the shader kernels. diff --git a/lib/mesa/src/gallium/docs/source/drivers/openswr/usage.rst b/lib/mesa/src/gallium/docs/source/drivers/openswr/usage.rst index 61c30c27c..e55b4211a 100644 --- a/lib/mesa/src/gallium/docs/source/drivers/openswr/usage.rst +++ b/lib/mesa/src/gallium/docs/source/drivers/openswr/usage.rst @@ -4,9 +4,8 @@ Usage Requirements ^^^^^^^^^^^^ -* An x86 processor with AVX or above -* LLVM version 3.9 or later -* C++14 capable compiler +* An x86 processor with AVX or AVX2 +* LLVM version 3.6 or later Building ^^^^^^^^ @@ -19,18 +18,13 @@ configure time, for example: :: Using ^^^^^ -On Linux, building with autotools will create a drop-in alternative -for libGL.so into:: +On Linux, building will create a drop-in alternative for libGL.so into:: lib/gallium/libGL.so - lib/gallium/libswrAVX.so - lib/gallium/libswrAVX2.so -Alternatively, building with SCons will produce:: +or:: - build/linux-x86_64/gallium/targets/libgl-xlib/libGL.so - build/linux-x86_64/gallium/drivers/swr/libswrAVX.so - build/linux-x86_64/gallium/drivers/swr/libswrAVX2.so + build/foo/gallium/targets/libgl-xlib/libGL.so To use it set the LD_LIBRARY_PATH environment variable accordingly. |