diff options
author | Erik Faye-Lund <[email protected]> | 2019-06-03 18:30:23 +0200 |
---|---|---|
committer | Erik Faye-Lund <[email protected]> | 2019-06-05 23:48:45 +0200 |
commit | 8620f53212df1a96f5ae1d180dacb28418bf6cc8 (patch) | |
tree | c09844b604cccb8eb72088ec532a550403f6490a /docs/relnotes | |
parent | d5e273aad24ae28b53422599d17177714aabf3e7 (diff) |
docs: do not use br-tag for non-significant breaks
According to the W3C, we shouldn't use the br-tag unless the line-break
is part of the content:
https://www.w3.org/TR/2011/WD-html5-author-20110809/the-br-element.html
All of these instances are for non-content usage, and is as such technically
out-of-spec. So let's either remove them, or split paragraphs, based on
how related the content are.
Signed-off-by: Erik Faye-Lund <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'docs/relnotes')
-rw-r--r-- | docs/relnotes/6.4.2.html | 3 | ||||
-rw-r--r-- | docs/relnotes/6.5.2.html | 4 | ||||
-rw-r--r-- | docs/relnotes/6.5.html | 21 | ||||
-rw-r--r-- | docs/relnotes/9.0.html | 1 |
4 files changed, 15 insertions, 14 deletions
diff --git a/docs/relnotes/6.4.2.html b/docs/relnotes/6.4.2.html index 3528f32caa1..1aa48979bce 100644 --- a/docs/relnotes/6.4.2.html +++ b/docs/relnotes/6.4.2.html @@ -43,8 +43,7 @@ fe1523744fc05edc3811dfc6a1bf4181 MesaGLUT-6.4.2.zip <h2>Changes</h2> <ul> -<li>GLUT tarball -<br> +<li>GLUT tarball: Starting with 6.4, the GLUT library sources are distributed in a separate tarball. This was done at the request of Linux distro vendors who prefer to use freeglut. diff --git a/docs/relnotes/6.5.2.html b/docs/relnotes/6.5.2.html index 476e8edaa46..3af3ce73bba 100644 --- a/docs/relnotes/6.5.2.html +++ b/docs/relnotes/6.5.2.html @@ -41,10 +41,10 @@ c6d7134843ed5faf11f6686ecb5d2a2e MesaGLUT-6.5.2.zip <li>New DRI memory manager system. Currently used by the i915tex driver. Other DRI drivers will be updated to use the new memory manager in coming months. -<br> +<p> To use the new driver you'll need the most recent DRM library and drivers (version 2.2 or later) and a recent xf86-video-intel driver module from X.org. -<br> +</p> New features resulting from this work include: <ul> <li>EXT_framebuffer_objects, render to texture diff --git a/docs/relnotes/6.5.html b/docs/relnotes/6.5.html index 44896102648..25f4440c325 100644 --- a/docs/relnotes/6.5.html +++ b/docs/relnotes/6.5.html @@ -39,33 +39,36 @@ ac1d585483617db0c91e5c15cb5ec3a3 MesaGLUT-6.5.tar.gz <h2>New Features</h2> <ul> <li>OpenGL Shading language support -<br> +<p> This includes the GL_ARB_shader_objects, GL_ARB_shading_language_100, GL_ARB_vertex_shader and GL_ARB_fragment_shader extensions. Most of the work was done by Michal Krol. There's probably a fair number of bugs since this is a pretty large, complicated body of code. -<br> +</p> +<p> The OpenGL 2.0 interface to these features will be implemented in a future version of Mesa, +</p> <li>GL_EXT_timer_query -<br> +<p> Used to measure the time of OpenGL operations at high precision. Only supported in the software/Xlib driver at this time. - +</p> <li>GL_EXT_packed_depth_stencil -<br> +<p> Defines a new GL_DEPTH_STENCIL_EXT pixel format. - +</p> <li>GL_EXT_framebuffer_blit -<br> +<p> A simplified glCopyPixels-like feature for copying pixel rectangles. - +</p> <li>GL_ARB_half_float_pixel -<br> +<p> Adds a new half-precision floating point format for image transfers, such as for glDrawPixels, glReadPixels, glTexImage, etc. +</p> </ul> <h2>Changes</h2> diff --git a/docs/relnotes/9.0.html b/docs/relnotes/9.0.html index b629f889d80..8273ef89fbf 100644 --- a/docs/relnotes/9.0.html +++ b/docs/relnotes/9.0.html @@ -84,7 +84,6 @@ by Khronos.</li> <ul> <li> The legacy/static Makefile system (ex: 'make linux-dri') has been removed. -<br> The two supported build methods are now autoconf/automake and SCons. </li> <li>Removed support for GL_ARB_shadow_ambient extension</li> |