diff --git a/.travis.yml b/.travis.yml index 1e33879..8780537 100644 --- a/.travis.yml +++ b/.travis.yml @@ -58,16 +58,16 @@ all_branches: true condition: $TRAVIS_TAG # Deploy config for latest release - - provider: s3 - access_key_id: $S3_ACCESS_KEY_ID - secret_access_key: $S3_SECRET_ACCESS_KEY - bucket: "pixi.js" - skip_cleanup: true - acl: public_read - region: eu-west-1 - cache_control: "max-age=1209600" - local_dir: dist - upload-dir: "release" - on: - all_branches: true - condition: $TRAVIS_TAG \ No newline at end of file + # - provider: s3 + # access_key_id: $S3_ACCESS_KEY_ID + # secret_access_key: $S3_SECRET_ACCESS_KEY + # bucket: "pixi.js" + # skip_cleanup: true + # acl: public_read + # region: eu-west-1 + # cache_control: "max-age=1209600" + # local_dir: dist + # upload-dir: "release" + # on: + # all_branches: true + # condition: $TRAVIS_TAG \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 1e33879..8780537 100644 --- a/.travis.yml +++ b/.travis.yml @@ -58,16 +58,16 @@ all_branches: true condition: $TRAVIS_TAG # Deploy config for latest release - - provider: s3 - access_key_id: $S3_ACCESS_KEY_ID - secret_access_key: $S3_SECRET_ACCESS_KEY - bucket: "pixi.js" - skip_cleanup: true - acl: public_read - region: eu-west-1 - cache_control: "max-age=1209600" - local_dir: dist - upload-dir: "release" - on: - all_branches: true - condition: $TRAVIS_TAG \ No newline at end of file + # - provider: s3 + # access_key_id: $S3_ACCESS_KEY_ID + # secret_access_key: $S3_SECRET_ACCESS_KEY + # bucket: "pixi.js" + # skip_cleanup: true + # acl: public_read + # region: eu-west-1 + # cache_control: "max-age=1209600" + # local_dir: dist + # upload-dir: "release" + # on: + # all_branches: true + # condition: $TRAVIS_TAG \ No newline at end of file diff --git a/packages/graphics/src/GraphicsRenderer.js b/packages/graphics/src/GraphicsRenderer.js index 57aae42..7dcee4e 100644 --- a/packages/graphics/src/GraphicsRenderer.js +++ b/packages/graphics/src/GraphicsRenderer.js @@ -216,10 +216,11 @@ if (!webGLData || webGLData.nativeLines !== nativeLines || webGLData.points.length > 320000) { - webGLData = this.graphicsDataPool.pop() - || new WebGLGraphicsData(this.renderer.gl, - this.primitiveShader, - this.renderer.state.attribsState); + webGLData = this.graphicsDataPool.pop() || new WebGLGraphicsData( + this.renderer.gl, + this.primitiveShader, + this.renderer.state.attribsState + ); webGLData.nativeLines = nativeLines;