diff options
author | Nicolai Hähnle <[email protected]> | 2017-01-24 21:22:32 +0100 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2017-01-27 10:19:48 +0100 |
commit | c5e76a262a4246267bbbfa803aebeeb733388e11 (patch) | |
tree | f3854d6cef27b1f957b0b778250cb183ee2eb79a /docs | |
parent | 93dc5c1a06e4c7e1038e9adfc9349c3e8a1a0052 (diff) |
gallium: enable int64 on radeonsi, llvmpipe, softpipe
All of these have had support for the TGSI opcodes since before most of
the glsl compiler work landed.
Also update the docs accordingly, including the missing note about i965.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/features.txt | 2 | ||||
-rw-r--r-- | docs/relnotes/17.1.0.html | 61 |
2 files changed, 62 insertions, 1 deletions
diff --git a/docs/features.txt b/docs/features.txt index aff00167dc9..55b1fbb6f03 100644 --- a/docs/features.txt +++ b/docs/features.txt @@ -283,7 +283,7 @@ Khronos, ARB, and OES extensions that are not part of any OpenGL or OpenGL ES ve GL_ARB_ES3_2_compatibility DONE (i965/gen8+) GL_ARB_fragment_shader_interlock not started GL_ARB_gl_spirv not started - GL_ARB_gpu_shader_int64 started (airlied for core and Gallium, idr for i965) + GL_ARB_gpu_shader_int64 DONE (i965/gen8+, radeonsi, softpipe, llvmpipe) GL_ARB_indirect_parameters DONE (nvc0, radeonsi) GL_ARB_parallel_shader_compile not started, but Chia-I Wu did some related work in 2014 GL_ARB_pipeline_statistics_query DONE (i965, nvc0, radeonsi, softpipe, swr) diff --git a/docs/relnotes/17.1.0.html b/docs/relnotes/17.1.0.html new file mode 100644 index 00000000000..1b5535b95b2 --- /dev/null +++ b/docs/relnotes/17.1.0.html @@ -0,0 +1,61 @@ +<!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 17.1.0 Release Notes / TBD</h1> + +<p> +Mesa 17.1.0 is a new development release. +People who are concerned with stability and reliability should stick +with a previous release or wait for Mesa 17.1.1. +</p> +<p> +Mesa 17.1.0 implements the OpenGL 4.5 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 4.5. OpenGL +4.5 is <strong>only</strong> available if requested at context creation +because compatibility contexts are not supported. +</p> + + +<h2>SHA256 checksums</h2> +<pre> +TBD. +</pre> + + +<h2>New features</h2> + +<p> +Note: some of the new features are only available with certain drivers. +</p> + +<ul> +<li>GL_ARB_gpu_shader_int64 on i965/gen8+, radeonsi, softpipe, llvmpipe</li> +</ul> + +<h2>Bug fixes</h2> + +<ul> +</ul> + +<h2>Changes</h2> + +TBD. + +</div> +</body> +</html> |