main: Fix deprecation of glLineWidth()
authorPaul Berry <stereotype441@gmail.com>
Mon, 5 Aug 2013 22:46:43 +0000 (15:46 -0700)
committerPaul Berry <stereotype441@gmail.com>
Fri, 9 Aug 2013 17:34:05 +0000 (10:34 -0700)
commit13fedf2883c7a1d7ff911b75eb88df00ba22eea7
tree96cd003ada73bd1086c7b45b32464c4086d09afb
parent836098f6b2dd275a2f557780d094cde13471f49d
main: Fix deprecation of glLineWidth()

From section E.1 (Profiles and Deprecated Features of OpenGL 3.0)
of the OpenGL 3.0 spec:

    "LineWidth is not deprecated, but values greater than 1.0
    will generate an INVALID VALUE error"

From context it is clear that values greater than 1.0 should only
generate an INVALID VALUE error in a forward-compatible context.

The code was correctly quoting this spec text, but it was disallowing
all line widths in forward-compatible contexts, instead of just widths
greater than 1.0.

This patch introduces the correct check, so that setting a line width
of 1.0 or less is permitted.

Reviewed-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/mesa/main/lines.c