diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2003-02-21 21:14:08 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2003-02-21 21:14:08 +0000 |
commit | d9ed9e1a9ae63916388c1cf2c9ac17474f6501dc (patch) | |
tree | e54b1bd28f5b0a87cd83a36a3525c3b0faf1c7ae /src/miniglx | |
parent | 6133ba36ecfad80eb36f53fae76ba96e65040bb3 (diff) |
Restrict access to non-subset gl entrypoints. Other small cleanups.
Diffstat (limited to 'src/miniglx')
-rw-r--r-- | src/miniglx/example.miniglx.conf | 2 | ||||
-rw-r--r-- | src/miniglx/miniglx.c | 9 |
2 files changed, 6 insertions, 5 deletions
diff --git a/src/miniglx/example.miniglx.conf b/src/miniglx/example.miniglx.conf index 4cf20c0a5d..3ed593300f 100644 --- a/src/miniglx/example.miniglx.conf +++ b/src/miniglx/example.miniglx.conf @@ -12,7 +12,7 @@ clientDriverName=radeon_dri.so # The pci bus id of the video card. Find this with scanpci, lspci or # look in /proc/pci. -pciBusID=PCI:1:0:0 +pciBusID=PCI:3:0:0 # Virtual screen dimensions. Can reduce this to save videocard memory # at the expense of maximum window size available. diff --git a/src/miniglx/miniglx.c b/src/miniglx/miniglx.c index 00270b5bed..007af16c0c 100644 --- a/src/miniglx/miniglx.c +++ b/src/miniglx/miniglx.c @@ -22,7 +22,7 @@ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/* $Id: miniglx.c,v 1.1.4.45 2003/01/20 15:01:39 brianp Exp $ */ +/* $Id: miniglx.c,v 1.1.4.46 2003/02/21 21:14:31 keithw Exp $ */ /** @@ -44,9 +44,10 @@ * interface is a subset of the GLX interface, plus a minimal set of Xlib-like * functions. * - * Programs written to the Mini GLX specification should run unchanged on - * systems with the X Window System and the GLX extension. The intention is to - * allow flexibility for prototyping and testing. + * Programs written to the Mini GLX specification should run unchanged + * on systems with the X Window System and the GLX extension (after + * recompilation). The intention is to allow flexibility for + * prototyping and testing. * * The files in the src/miniglx/ directory are compiled to build the * libGL.so library. This is the library which applications link with. |