diff options
Diffstat (limited to 'mesalib/docs')
-rw-r--r-- | mesalib/docs/GL3.txt | 6 | ||||
-rw-r--r-- | mesalib/docs/README.WIN32 | 4 | ||||
-rw-r--r-- | mesalib/docs/contents.html | 1 | ||||
-rw-r--r-- | mesalib/docs/egl.html | 36 | ||||
-rw-r--r-- | mesalib/docs/index.html | 6 | ||||
-rw-r--r-- | mesalib/docs/install.html | 5 | ||||
-rw-r--r-- | mesalib/docs/openvg.html | 59 | ||||
-rw-r--r-- | mesalib/docs/relnotes.html | 1 | ||||
-rw-r--r-- | mesalib/docs/relnotes/10.4.5.html | 114 | ||||
-rw-r--r-- | mesalib/docs/relnotes/10.6.0.html | 7 | ||||
-rw-r--r-- | mesalib/docs/relnotes/7.6.html | 2 | ||||
-rw-r--r-- | mesalib/docs/sourcetree.html | 2 |
12 files changed, 138 insertions, 105 deletions
diff --git a/mesalib/docs/GL3.txt b/mesalib/docs/GL3.txt index a5b817545..43bbf854e 100644 --- a/mesalib/docs/GL3.txt +++ b/mesalib/docs/GL3.txt @@ -95,7 +95,7 @@ GL 3.3, GLSL 3.30 --- all DONE: i965, nv50, nvc0, r600, radeonsi, llvmpipe, soft GL 4.0, GLSL 4.00: GL_ARB_draw_buffers_blend DONE (i965, nv50, nvc0, r600, radeonsi, llvmpipe, softpipe) - GL_ARB_draw_indirect DONE (i965, nvc0, radeonsi, llvmpipe, softpipe) + GL_ARB_draw_indirect DONE (i965, nvc0, r600, radeonsi, llvmpipe, softpipe) GL_ARB_gpu_shader5 DONE (i965, nvc0) - 'precise' qualifier DONE - Dynamically uniform sampler array indices DONE (r600) @@ -159,7 +159,7 @@ GL 4.3, GLSL 4.30: GL_ARB_framebuffer_no_attachments not started GL_ARB_internalformat_query2 not started GL_ARB_invalidate_subdata DONE (all drivers) - GL_ARB_multi_draw_indirect DONE (i965, nvc0, radeonsi, llvmpipe, softpipe) + GL_ARB_multi_draw_indirect DONE (i965, nvc0, r600, radeonsi, llvmpipe, softpipe) GL_ARB_program_interface_query not started GL_ARB_robust_buffer_access_behavior not started GL_ARB_shader_image_size not started @@ -212,7 +212,7 @@ These are the extensions cherry-picked to make GLES 3.1 GLES3.1, GLSL ES 3.1 GL_ARB_arrays_of_arrays started (Timothy) GL_ARB_compute_shader in progress (jljusten) - GL_ARB_draw_indirect DONE (i965, nvc0, radeonsi, llvmpipe, softpipe) + GL_ARB_draw_indirect DONE (i965, nvc0, r600, radeonsi, llvmpipe, softpipe) GL_ARB_explicit_uniform_location DONE (all drivers that support GLSL) GL_ARB_framebuffer_no_attachments not started GL_ARB_program_interface_query not started diff --git a/mesalib/docs/README.WIN32 b/mesalib/docs/README.WIN32 index c8759f65b..e0e5b9b2d 100644 --- a/mesalib/docs/README.WIN32 +++ b/mesalib/docs/README.WIN32 @@ -11,9 +11,9 @@ no longer shipped or supported. Run - scons osmesa mesagdi + scons osmesa -to build classic mesa Windows GDI drivers; or +to build classic osmesa driver; or scons libgl-gdi diff --git a/mesalib/docs/contents.html b/mesalib/docs/contents.html index 50c0d5913..6612cbefa 100644 --- a/mesalib/docs/contents.html +++ b/mesalib/docs/contents.html @@ -61,7 +61,6 @@ <li><a href="shading.html" target="_parent">Shading Language</a> <li><a href="egl.html" target="_parent">EGL</a> <li><a href="opengles.html" target="_parent">OpenGL ES</a> -<li><a href="openvg.html" target="_parent">OpenVG / Vega</a> <li><a href="envvars.html" target="_parent">Environment Variables</a> <li><a href="osmesa.html" target="_parent">Off-Screen Rendering</a> <li><a href="debugging.html" target="_parent">Debugging Tips</a> diff --git a/mesalib/docs/egl.html b/mesalib/docs/egl.html index e77c2359d..a715a3ad3 100644 --- a/mesalib/docs/egl.html +++ b/mesalib/docs/egl.html @@ -112,13 +112,6 @@ is required if applications mix OpenGL and OpenGL ES.</p> </dd> -<dt><code>--enable-openvg</code></dt> -<dd> - -<p>OpenVG must be explicitly enabled by this option.</p> - -</dd> - </dl> <h2>Use EGL</h2> @@ -212,38 +205,15 @@ the X server directly using (XCB-)DRI2 protocol.</p> </dd> -<dt><code>egl_gallium</code></dt> -<dd> - -<p>This driver is based on Gallium3D. It supports all rendering APIs and -hardware supported by Gallium3D. It is the only driver that supports OpenVG. -The supported platforms are X11, DRM, FBDEV, and GDI.</p> - -<p>This driver comes with its own hardware drivers -(<code>pipe_<hw></code>) and client API modules -(<code>st_<api></code>).</p> - -</dd> - <h2>Packaging</h2> <p>The ABI between the main library and its drivers are not stable. Nor is -there a plan to stabilize it at the moment. Of the EGL drivers, -<code>egl_gallium</code> has its own hardware drivers and client API modules. -They are considered internal to <code>egl_gallium</code> and there is also no -stable ABI between them. These should be kept in mind when packaging for -distribution.</p> - -<p>Generally, <code>egl_dri2</code> is preferred over <code>egl_gallium</code> -when the system already has DRI drivers. As <code>egl_gallium</code> is loaded -before <code>egl_dri2</code> when both are available, <code>egl_gallium</code> -is disabled by default.</p> +there a plan to stabilize it at the moment.</p> <h2>Developers</h2> -<p>The sources of the main library and the classic drivers can be found at -<code>src/egl/</code>. The sources of the <code>egl</code> state tracker can -be found at <code>src/gallium/state_trackers/egl/</code>.</p> +<p>The sources of the main library and drivers can be found at +<code>src/egl/</code>.</p> <h3>Lifetime of Display Resources</h3> diff --git a/mesalib/docs/index.html b/mesalib/docs/index.html index 15306cebc..9b72bc1f2 100644 --- a/mesalib/docs/index.html +++ b/mesalib/docs/index.html @@ -16,6 +16,12 @@ <h1>News</h1> +<h2>February 21, 2015</h2> +<p> +<a href="relnotes/10.4.5.html">Mesa 10.4.5</a> is released. +This is a bug-fix release. +</p> + <h2>February 06, 2015</h2> <p> <a href="relnotes/10.4.4.html">Mesa 10.4.4</a> is released. diff --git a/mesalib/docs/install.html b/mesalib/docs/install.html index b12e1cb8c..9dbfce58b 100644 --- a/mesalib/docs/install.html +++ b/mesalib/docs/install.html @@ -127,14 +127,13 @@ by -debug for debug builds. To build Mesa with SCons for Windows on Linux using the MinGW crosscompiler toolchain do </p> <pre> - scons platform=windows toolchain=crossmingw machine=x86 mesagdi libgl-gdi + scons platform=windows toolchain=crossmingw machine=x86 libgl-gdi </pre> <p> This will create: </p> <ul> -<li>build/windows-x86-debug/mesa/drivers/windows/gdi/opengl32.dll — Mesa + swrast, binary compatible with Windows's opengl32.dll -<li>build/windows-x86-debug/gallium/targets/libgl-gdi/opengl32.dll — Mesa + Gallium + softpipe, binary compatible with Windows's opengl32.dll +<li>build/windows-x86-debug/gallium/targets/libgl-gdi/opengl32.dll — Mesa + Gallium + softpipe (or llvmpipe), binary compatible with Windows's opengl32.dll </ul> <p> Put them all in the same directory to test them. diff --git a/mesalib/docs/openvg.html b/mesalib/docs/openvg.html deleted file mode 100644 index 28ebb82e8..000000000 --- a/mesalib/docs/openvg.html +++ /dev/null @@ -1,59 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> -<html lang="en"> -<head> - <meta http-equiv="content-type" content="text/html; charset=utf-8"> - <title>OpenVG State Tracker</title> - <link rel="stylesheet" type="text/css" href="mesa.css"> -</head> -<body> - -<div class="header"> - <h1>The Mesa 3D Graphics Library</h1> -</div> - -<iframe src="contents.html"></iframe> -<div class="content"> - -<h1>OpenVG State Tracker</h1> - -<p> -The current version of the OpenVG state tracker implements OpenVG 1.1. -</p> -<p> -More information about OpenVG can be found at -<a href="http://www.khronos.org/openvg/"> -http://www.khronos.org/openvg/</a> . -</p> -<p> -The OpenVG state tracker depends on the Gallium architecture and a working EGL implementation. -Please refer to <a href="egl.html">Mesa EGL</a> for more information about EGL. -</p> - - -<h2>Building the library</h2> -<ol> -<li>Run <code>configure</code> with <code>--enable-openvg</code> and -<code>--enable-gallium-egl</code>. If you do not need OpenGL, you can add -<code>--disable-opengl</code> to save the compilation time.</li> - -<li>Build and install Mesa as usual.</li> -</ol> - -<h3>Sample build</h3> -A sample build looks as follows: -<pre> - $ ./configure --disable-opengl --enable-openvg --enable-gallium-egl - $ make - $ make install -</pre> - -<p>It will install <code>libOpenVG.so</code>, <code>libEGL.so</code>, and one -or more EGL drivers.</p> - -<h2>OpenVG Demos</h2> - -<p>OpenVG demos can be found in mesa/demos repository.</p> - -</div> -</body> -</html> diff --git a/mesalib/docs/relnotes.html b/mesalib/docs/relnotes.html index 005391974..d4ba11005 100644 --- a/mesalib/docs/relnotes.html +++ b/mesalib/docs/relnotes.html @@ -21,6 +21,7 @@ The release notes summarize what's new or changed in each Mesa release. </p> <ul> +<li><a href="relnotes/10.4.5.html">10.4.5 release notes</a> <li><a href="relnotes/10.4.4.html">10.4.4 release notes</a> <li><a href="relnotes/10.4.3.html">10.4.3 release notes</a> <li><a href="relnotes/10.4.2.html">10.4.2 release notes</a> diff --git a/mesalib/docs/relnotes/10.4.5.html b/mesalib/docs/relnotes/10.4.5.html new file mode 100644 index 000000000..0a0a22ba6 --- /dev/null +++ b/mesalib/docs/relnotes/10.4.5.html @@ -0,0 +1,114 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<html lang="en"> +<head> + <meta http-equiv="content-type" content="text/html; charset=utf-8"> + <title>Mesa Release Notes</title> + <link rel="stylesheet" type="text/css" href="../mesa.css"> +</head> +<body> + +<div class="header"> + <h1>The Mesa 3D Graphics Library</h1> +</div> + +<iframe src="../contents.html"></iframe> +<div class="content"> + +<h1>Mesa 10.4.5 Release Notes / February 21, 2015</h1> + +<p> +Mesa 10.4.5 is a bug fix release which fixes bugs found since the 10.4.4 release. +</p> +<p> +Mesa 10.4.5 implements the OpenGL 3.3 API, but the version reported by +glGetString(GL_VERSION) or glGetIntegerv(GL_MAJOR_VERSION) / +glGetIntegerv(GL_MINOR_VERSION) depends on the particular driver being used. +Some drivers don't support all the features required in OpenGL 3.3. OpenGL +3.3 is <strong>only</strong> available if requested at context creation +because compatibility contexts are not supported. +</p> + +<h2>SHA256 checksums</h2> +<pre> +e12bbdaee9a758617e8ebd0bb0e987f72addd11db2e4da25ba695e386cd63843 MesaLib-10.4.5.tar.gz +bf60000700a9d58e3aca2bfeee7e781053b0d839e61a95b1883e05a2dee247a0 MesaLib-10.4.5.tar.bz2 +3b926de8eee500bb67cf85332c51292f826cc539b8636382aadbb8e70c76527a MesaLib-10.4.5.zip +</pre> + +<h2>New features</h2> +<p>None</p> + +<h2>Bug fixes</h2> + +<p>This list is likely incomplete.</p> + +<ul> + +<li><a href="https://bugs.freedesktop.org/show_bug.cgi?id=82477">Bug 82477</a> - [softpipe] piglit fp-long-alu regression</li> + +<li><a href="https://bugs.freedesktop.org/show_bug.cgi?id=88658">Bug 88658</a> - (bisected) Slow video playback on Kabini</li> + +<li><a href="https://bugs.freedesktop.org/show_bug.cgi?id=89069">Bug 89069</a> - Lack of grass in The Talos Principle on radeonsi (native\wine\nine)</li> + +</ul> + + +<h2>Changes</h2> + +<p>Carl Worth (1):</p> +<ul> + <li>Revert use of Mesa IR optimizer for ARB_fragment_programs</li> +</ul> + +<p>Emil Velikov (3):</p> +<ul> + <li>docs: Add sha256 sums for the 10.4.4 release</li> + <li>get-pick-list.sh: Require explicit "10.4" for nominating stable patches</li> + <li>Update version to 10.4.5</li> +</ul> + +<p>Ilia Mirkin (3):</p> +<ul> + <li>nvc0: bail out of 2d blits with non-A8_UNORM alpha formats</li> + <li>st/mesa: treat resource-less xfb buffers as if they weren't there</li> + <li>nvc0: allow holes in xfb target lists</li> +</ul> + +<p>Jeremy Huddleston Sequoia (2):</p> +<ul> + <li>darwin: build fix</li> + <li>darwin: build fix</li> +</ul> + +<p>Kenneth Graunke (4):</p> +<ul> + <li>i965: Override swizzles for integer luminance formats.</li> + <li>i965: Use a gl_color_union for sampler border color.</li> + <li>i965: Fix integer border color on Haswell.</li> + <li>glsl: Reduce memory consumption of copy propagation passes.</li> +</ul> + +<p>Laura Ekstrand (1):</p> +<ul> + <li>main: Fixed _mesa_GetCompressedTexImage_sw to copy slices correctly.</li> +</ul> + +<p>Marek Olšák (5):</p> +<ul> + <li>r600g,radeonsi: don't append to streamout buffers that haven't been used yet</li> + <li>radeonsi: fix instanced arrays with non-zero start instance</li> + <li>radeonsi: small fix in SPI state</li> + <li>mesa: fix AtomicBuffer typo in _mesa_DeleteBuffers</li> + <li>radeonsi: fix a crash if a stencil ref state is set before a DSA state</li> +</ul> + +<p>Michel Dänzer (2):</p> +<ul> + <li>st/mesa: Don't use PIPE_USAGE_STREAM for GL_PIXEL_UNPACK_BUFFER_ARB</li> + <li>Revert "radeon/llvm: enable unsafe math for graphics shaders"</li> +</ul> + + +</div> +</body> +</html> diff --git a/mesalib/docs/relnotes/10.6.0.html b/mesalib/docs/relnotes/10.6.0.html index 056d3b00d..a396109bb 100644 --- a/mesalib/docs/relnotes/10.6.0.html +++ b/mesalib/docs/relnotes/10.6.0.html @@ -49,6 +49,7 @@ Note: some of the new features are only available with certain drivers. <li>GL_ARB_gpu_shader_fp64 on nvc0, softpipe</li> <li>GL_ARB_instanced_arrays on freedreno</li> <li>GL_ARB_pipeline_statistics_query on i965, nv50, nvc0, r600, radeonsi, softpipe</li> +<li>GL_ARB_draw_indirect, GL_ARB_multi_draw_indirect on r600</li> </ul> <h2>Bug fixes</h2> @@ -57,7 +58,11 @@ TBD. <h2>Changes</h2> -TBD. +<ul> +<li>Removed classic Windows software rasterizer.</li> +<li>Removed egl_gallium EGL driver.</li> +<li>Removed OpenVG support.</li> +</ul> </div> </body> diff --git a/mesalib/docs/relnotes/7.6.html b/mesalib/docs/relnotes/7.6.html index 86ad4a848..c6eba1d2e 100644 --- a/mesalib/docs/relnotes/7.6.html +++ b/mesalib/docs/relnotes/7.6.html @@ -48,7 +48,7 @@ c49c19c2bbef4f3b7f1389974dff25f4 MesaGLUT-7.6.zip <h2>New features</h2> <ul> -<li><a href="../openvg.html">OpenVG</a> front-end (state tracker for Gallium). +<li>OpenVG front-end (state tracker for Gallium). This was written by Zack Rusin at Tungsten Graphics. <li>GL_ARB_vertex_array_object and GL_APPLE_vertex_array_object extensions (supported in Gallium drivers, Intel DRI drivers, and software drivers)</li> diff --git a/mesalib/docs/sourcetree.html b/mesalib/docs/sourcetree.html index 4c93f6341..0765778f1 100644 --- a/mesalib/docs/sourcetree.html +++ b/mesalib/docs/sourcetree.html @@ -133,10 +133,8 @@ each directory. <ul> <li><b>clover</b> - OpenCL state tracker <li><b>dri</b> - Meta state tracker for DRI drivers - <li><b>egl</b> - Meta state tracker for EGL drivers <li><b>glx</b> - Meta state tracker for GLX <li><b>vdpau</b> - VDPAU state tracker - <li><b>vega</b> - OpenVG 1.x state tracker <li><b>wgl</b> - <li><b>xorg</b> - Meta state tracker for Xorg video drivers <li><b>xvmc</b> - XvMC state tracker |