summaryrefslogtreecommitdiff
path: root/Software/gallium
diff options
context:
space:
mode:
authornis.martensen <nis.martensen@web>2013-06-01 01:45:25 -0700
committerwww <iki-www@freedesktop.org>2013-06-01 01:45:25 -0700
commitf9273bf788432f62f8d20206907bb29663df80f1 (patch)
tree99102dc2536a00d8d5e211ad17fd41468cad5834 /Software/gallium
parentf3253ae5634824ede6e5b0f0b68f68f53c2031f3 (diff)
gallium/EGLReferenceDrivers: fix formatting
Diffstat (limited to 'Software/gallium')
-rw-r--r--Software/gallium/EGLReferenceDrivers.mdwn63
1 files changed, 34 insertions, 29 deletions
diff --git a/Software/gallium/EGLReferenceDrivers.mdwn b/Software/gallium/EGLReferenceDrivers.mdwn
index 598b0dac..c572b7aa 100644
--- a/Software/gallium/EGLReferenceDrivers.mdwn
+++ b/Software/gallium/EGLReferenceDrivers.mdwn
@@ -1,30 +1,35 @@
+This page contains the instructions for building the OpenGL and OpenVG Gallium Softpipe EGL/Linux reference drivers.
+
+Optionally, you can download an entire virtual machine image with the entire EGL build and environment already installed. [[Instructions|http://www.freedesktop.org/wiki/Software/gallium/EGLReferenceDrivers/linuxvmimage]] on how to download VMware's player and the Gallium3D Reference Image.
+
+1. Get latest Mesa3D repository. It's where Gallium3D is hosted right now.
+
+ git clone git://git.freedesktop.org/git/mesa/mesa
+
+1. Compile Mesa3D in a way that compiles Gallium3D and software driver.
+
+ cd mesa
+ export GALLIUM=$PWD
+ make linux-x86-debug
+
+1. Compile OpenVG if you want to.
+
+ cd src/gallium/state_trackers/vega
+ make
+ cd $GALLIUM
+
+1. Make sure that from now on all apps pick up your newly compiled Gallium libs.
+
+ export LD_LIBRARY_PATH=$GALLIUM/lib/gallium:$GALLIUM/lib:$LD_LIBRARY_PATH
+
+1. Make sure Gallium's EGL implementation is using the software driver.
+
+ export EGL_DRIVER="egl_softpipe"
+
+1. Play around with demos.
+
+ cd progs/openvg/demos
+ make
+ ./sp
+ ./lion
-This page contains the instructions for building the OpenGL and OpenVG Gallium Softpipe EGL/Linux reference drivers.
-
-Optionally, you can download an entire virtual machine image with the entire EGL build and environment already installed. [[Instructions|http://www.freedesktop.org/wiki/Software/gallium/EGLReferenceDrivers/linuxvmimage]] on how to download VMware's player and the Gallium3D Reference Image.
-
- 1. Get latest Mesa3D repository. It's where Gallium3D is hosted right now.[[!format txt """
-git clone git://git.freedesktop.org/git/mesa/mesa
-"""]]
- 1. Compile Mesa3D in a way that compiles Gallium3D and software driver.[[!format txt """
-cd mesa
-export GALLIUM=$PWD
-make linux-x86-debug
-"""]]
- 1. Compile OpenVG if you want to.[[!format txt """
-cd src/gallium/state_trackers/vega
-make
-cd $GALLIUM
-"""]]
- 1. Make sure that from now on all apps pick up your newly compiled Gallium libs.[[!format txt """
-export LD_LIBRARY_PATH=$GALLIUM/lib/gallium:$GALLIUM/lib:$LD_LIBRARY_PATH
-"""]]
- 1. Make sure Gallium's EGL implementation is using the software driver.[[!format txt """
-export EGL_DRIVER="egl_softpipe"
-"""]]
- 1. Play around with demos.[[!format txt """
-cd progs/openvg/demos
-make
-./sp
-./lion
-"""]] \ No newline at end of file