aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/extras/Mesa_6.4.2/docs/pbuffers.html
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-06-27 18:34:20 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-06-27 18:34:20 +0200
commit3dcdea4dd0bc8ed0c36076be6ed32c494c58d1f8 (patch)
treef156fc930fcea64e892b667fd24e1a3e3588c565 /nx-X11/extras/Mesa_6.4.2/docs/pbuffers.html
parentc032f0e341c981036e9b3245a0e0710ad61599d0 (diff)
parentfa70485dc0b3c6cc1045bde65fbd46fc3fd670b4 (diff)
downloadnx-libs-3dcdea4dd0bc8ed0c36076be6ed32c494c58d1f8.tar.gz
nx-libs-3dcdea4dd0bc8ed0c36076be6ed32c494c58d1f8.tar.bz2
nx-libs-3dcdea4dd0bc8ed0c36076be6ed32c494c58d1f8.zip
Merge branch 'frantracer-mesa-update-6.4.2' into 3.6.x
Attributes GH PR #469: https://github.com/ArcticaProject/nx-libs/pull/469
Diffstat (limited to 'nx-X11/extras/Mesa_6.4.2/docs/pbuffers.html')
-rw-r--r--nx-X11/extras/Mesa_6.4.2/docs/pbuffers.html54
1 files changed, 54 insertions, 0 deletions
diff --git a/nx-X11/extras/Mesa_6.4.2/docs/pbuffers.html b/nx-X11/extras/Mesa_6.4.2/docs/pbuffers.html
new file mode 100644
index 000000000..259910155
--- /dev/null
+++ b/nx-X11/extras/Mesa_6.4.2/docs/pbuffers.html
@@ -0,0 +1,54 @@
+<HTML>
+
+<TITLE>PBuffer Rendering</TITLE>
+
+<link rel="stylesheet" type="text/css" href="mesa.css"></head>
+
+<BODY>
+
+<H1>PBuffer Rendering</H1>
+
+<p>
+Basically, FBconfigs and PBuffers allow you to do off-screen rendering
+with OpenGL. The OSMesa interface does basically the same thing, but
+fbconfigs and pbuffers are supported by more vendors.
+PBuffer rendering may also be hardware accelerated.
+</p>
+
+<p>
+PBuffers are getting more use nowadays, though they've actually been
+around for a long time on IRIX systems and other workstations.
+</p>
+
+<p>
+The
+<a href="http://oss.sgi.com/projects/ogl-sample/registry/SGIX/fbconfig.txt"
+target="_parent">GL_SGIX_fbconfig</a>
+and
+<a href="http://oss.sgi.com/projects/ogl-sample/registry/SGIX/pbuffer.txt"
+target="_parent">
+GL_SGIX_pbuffer</a> extensions describe the functionality.
+More recently, these extensions have been promoted to ARB extensions (on
+Windows at least).
+</p>
+
+<p>
+The Mesa/progs/xdemos/ directory has some useful code for working
+with pbuffers:
+</p>
+
+<ul>
+<li><b>pbinfo.c</b> - like glxinfo, it prints a list of available
+ fbconfigs and whether each supports pbuffers.
+<li><b>pbutil.c</b> - a few utility functions for dealing with
+ fbconfigs and pbuffers.
+<li><b>pbdemo.c</b> - a demonstration of off-screen rendering with pbuffers.
+</ul>
+
+<p>
+Mesa 4.1 and later support GL_SGIX_fbconfig and GL_SGIX_pbuffer (software
+rendering only).
+</p>
+
+</BODY>
+</HTML>