diff options
author | Samuel Pitoiset <[email protected]> | 2017-07-20 10:24:12 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-08-02 12:54:31 +0200 |
commit | 5c27de1ae145e488f643ed321d743826c95f3112 (patch) | |
tree | f2b58b1881a8cb8e4348b1a1c6c0360a30190be3 /src/mesa | |
parent | 7327cb0602e4527f7cdb1dc99667014e6e41a297 (diff) |
mesa: add KHR_no_error support to glLineWidth()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/lines.c | 8 | ||||
-rw-r--r-- | src/mesa/main/lines.h | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/mesa/main/lines.c b/src/mesa/main/lines.c index 04b3e2ff126..78d3a7729b9 100644 --- a/src/mesa/main/lines.c +++ b/src/mesa/main/lines.c @@ -77,6 +77,14 @@ line_width(struct gl_context *ctx, GLfloat width, bool no_error) void GLAPIENTRY +_mesa_LineWidth_no_error(GLfloat width) +{ + GET_CURRENT_CONTEXT(ctx); + line_width(ctx, width, true); +} + + +void GLAPIENTRY _mesa_LineWidth(GLfloat width) { GET_CURRENT_CONTEXT(ctx); diff --git a/src/mesa/main/lines.h b/src/mesa/main/lines.h index 9a16069a6d5..78a405cbac4 100644 --- a/src/mesa/main/lines.h +++ b/src/mesa/main/lines.h @@ -37,6 +37,9 @@ struct gl_context; +void GLAPIENTRY +_mesa_LineWidth_no_error(GLfloat width); + extern void GLAPIENTRY _mesa_LineWidth( GLfloat width ); |