Skip to content

Commit

Permalink
Default line width of 1
Browse files Browse the repository at this point in the history
  • Loading branch information
xeolabs committed May 1, 2013
1 parent 8b13856 commit 73d39cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
dist/
docs/

2 changes: 1 addition & 1 deletion src/core/display/display.js
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,7 @@ SceneJS_Display.prototype._doDrawList = function (pick, rayPick) {
gl.viewport(0, 0, this._canvas.canvas.width, this._canvas.canvas.height);
gl.clearColor(this._ambientColor[0], this._ambientColor[1], this._ambientColor[2], 1.0);
gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT | gl.STENCIL_BUFFER_BIT);
gl.lineWidth(3);
gl.lineWidth(1);
gl.frontFace(gl.CCW);
// gl.disable(gl.CULL_FACE);

Expand Down

0 comments on commit 73d39cd

Please sign in to comment.