W3cubDocs

/Web APIs

WebGLRenderingContext: lineWidth() method

The WebGLRenderingContext.lineWidth() method of the WebGL API sets the line width of rasterized lines.

Warning: The webgl spec, based on the OpenGL ES 2.0/3.0 specs points out that the minimum and maximum width for a line is implementation defined. The maximum minimum width is allowed to be 1.0. The minimum maximum width is also allowed to be 1.0. Because of these implementation defined limits it is not recommended to use line widths other than 1.0 since there is no guarantee any user's browser will display any other width.

As of January 2017 most implementations of WebGL only support a minimum of 1 and a maximum of 1 as the technology they are based on has these same limits.

Syntax

js

lineWidth(width)

Parameters

width

A GLfloat specifying the width of rasterized lines. Default value: 1.

Return value

None (undefined).

Examples

Setting the line width:

js

gl.lineWidth(5);

Getting the line width:

js

gl.getParameter(gl.LINE_WIDTH);

Getting the range of available widths. Returns a Float32Array.

js

gl.getParameter(gl.ALIASED_LINE_WIDTH_RANGE);

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
lineWidth 9 12 4 11 12 5.1 4.4.3 25 4 12 8 1.5

See also

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/WebGLRenderingContext/lineWidth