├── .circleci └── config.yml ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dist ├── README.md ├── regl-gpu-lines.compat.js ├── regl-gpu-lines.compat.min.js ├── regl-gpu-lines.js └── regl-gpu-lines.min.js ├── docs ├── 3d.html ├── API.md ├── basic.html ├── batching.html ├── border.html ├── closed-loop.html ├── dash.html ├── debug-view.html ├── debug.html ├── debug.png ├── depth.html ├── hexgrid.html ├── instanced.html ├── knot.html ├── lorenz.gif ├── multiple.html ├── number-texture.html ├── postproject.html ├── strided.html ├── tests.html ├── vao.html └── variable-width.html ├── examples ├── 3d.js ├── basic.js ├── batching.js ├── border.js ├── closed-loop.js ├── dash.js ├── debug-view.js ├── debug.js ├── depth.js ├── hexgrid.js ├── instanced.js ├── knot.js ├── multiple.js ├── postproject.js ├── strided.js ├── vao.js └── variable-width.js ├── package.json ├── rollup.config.js ├── scripts ├── _example.html ├── browser-fixture-renderer.js ├── build-example.js ├── build-test-page.js ├── compress.js ├── dummy.js ├── get-fixtures.js ├── serve-example.js └── serve-render-tests.js ├── src ├── constants │ ├── attr-usage.js │ ├── dtypes.json │ ├── dtypesizes.js │ ├── glsltypes.js │ └── orientation.json ├── create-attr-spec.js ├── draw-segment.js ├── index.js ├── parse-pragmas.js ├── sanitize-buffer.js └── sanitize-in-list.js └── test ├── fixtures ├── miter │ ├── basic │ │ ├── expected.png │ │ └── fixture.json │ ├── dash │ │ ├── extrapolate │ │ │ ├── expected.png │ │ │ └── fixture.json │ │ └── no-extrapolate │ │ │ ├── expected.png │ │ │ └── fixture.json │ ├── degenerate │ │ ├── expected.png │ │ └── fixture.json │ ├── depth │ │ ├── expected.png │ │ └── fixture.json │ ├── insert-caps │ │ ├── nan │ │ │ ├── expected.png │ │ │ └── fixture.json │ │ ├── none │ │ │ ├── expected.png │ │ │ └── fixture.json │ │ ├── round │ │ │ ├── expected.png │ │ │ └── fixture.json │ │ └── square │ │ │ ├── expected.png │ │ │ └── fixture.json │ ├── manual-caps │ │ ├── none │ │ │ ├── expected.png │ │ │ └── fixture.json │ │ ├── round │ │ │ ├── expected.png │ │ │ └── fixture.json │ │ └── square │ │ │ ├── expected.png │ │ │ └── fixture.json │ └── sdf │ │ ├── expected.png │ │ └── fixture.json └── round │ ├── basic │ ├── expected.png │ └── fixture.json │ ├── dash │ ├── extrapolate │ │ ├── expected.png │ │ └── fixture.json │ └── no-extrapolate │ │ ├── expected.png │ │ └── fixture.json │ ├── degenerate │ ├── expected.png │ └── fixture.json │ ├── depth │ ├── expected.png │ └── fixture.json │ ├── insert-caps │ ├── none │ │ ├── expected.png │ │ └── fixture.json │ ├── round │ │ ├── expected.png │ │ └── fixture.json │ └── square │ │ ├── expected.png │ │ └── fixture.json │ ├── manual-caps │ ├── none │ │ ├── expected.png │ │ └── fixture.json │ ├── round │ │ ├── expected.png │ │ └── fixture.json │ └── square │ │ ├── expected.png │ │ └── fixture.json │ ├── postproject │ ├── expected.png │ └── fixture.json │ └── sdf │ ├── expected.png │ └── fixture.json ├── render.js └── util ├── create-context.js └── render-fixture.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .circleci 2 | docs 3 | test/fixtures/**/*.png 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/README.md -------------------------------------------------------------------------------- /dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/dist/README.md -------------------------------------------------------------------------------- /dist/regl-gpu-lines.compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/dist/regl-gpu-lines.compat.js -------------------------------------------------------------------------------- /dist/regl-gpu-lines.compat.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/dist/regl-gpu-lines.compat.min.js -------------------------------------------------------------------------------- /dist/regl-gpu-lines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/dist/regl-gpu-lines.js -------------------------------------------------------------------------------- /dist/regl-gpu-lines.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/dist/regl-gpu-lines.min.js -------------------------------------------------------------------------------- /docs/3d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/3d.html -------------------------------------------------------------------------------- /docs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/API.md -------------------------------------------------------------------------------- /docs/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/basic.html -------------------------------------------------------------------------------- /docs/batching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/batching.html -------------------------------------------------------------------------------- /docs/border.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/border.html -------------------------------------------------------------------------------- /docs/closed-loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/closed-loop.html -------------------------------------------------------------------------------- /docs/dash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/dash.html -------------------------------------------------------------------------------- /docs/debug-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/debug-view.html -------------------------------------------------------------------------------- /docs/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/debug.html -------------------------------------------------------------------------------- /docs/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/debug.png -------------------------------------------------------------------------------- /docs/depth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/depth.html -------------------------------------------------------------------------------- /docs/hexgrid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/hexgrid.html -------------------------------------------------------------------------------- /docs/instanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/instanced.html -------------------------------------------------------------------------------- /docs/knot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/knot.html -------------------------------------------------------------------------------- /docs/lorenz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/lorenz.gif -------------------------------------------------------------------------------- /docs/multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/multiple.html -------------------------------------------------------------------------------- /docs/number-texture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/number-texture.html -------------------------------------------------------------------------------- /docs/postproject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/postproject.html -------------------------------------------------------------------------------- /docs/strided.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/strided.html -------------------------------------------------------------------------------- /docs/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/tests.html -------------------------------------------------------------------------------- /docs/vao.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/vao.html -------------------------------------------------------------------------------- /docs/variable-width.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/docs/variable-width.html -------------------------------------------------------------------------------- /examples/3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/3d.js -------------------------------------------------------------------------------- /examples/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/basic.js -------------------------------------------------------------------------------- /examples/batching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/batching.js -------------------------------------------------------------------------------- /examples/border.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/border.js -------------------------------------------------------------------------------- /examples/closed-loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/closed-loop.js -------------------------------------------------------------------------------- /examples/dash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/dash.js -------------------------------------------------------------------------------- /examples/debug-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/debug-view.js -------------------------------------------------------------------------------- /examples/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/debug.js -------------------------------------------------------------------------------- /examples/depth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/depth.js -------------------------------------------------------------------------------- /examples/hexgrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/hexgrid.js -------------------------------------------------------------------------------- /examples/instanced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/instanced.js -------------------------------------------------------------------------------- /examples/knot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/knot.js -------------------------------------------------------------------------------- /examples/multiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/multiple.js -------------------------------------------------------------------------------- /examples/postproject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/postproject.js -------------------------------------------------------------------------------- /examples/strided.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/strided.js -------------------------------------------------------------------------------- /examples/vao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/vao.js -------------------------------------------------------------------------------- /examples/variable-width.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/examples/variable-width.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/scripts/_example.html -------------------------------------------------------------------------------- /scripts/browser-fixture-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/scripts/browser-fixture-renderer.js -------------------------------------------------------------------------------- /scripts/build-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/scripts/build-example.js -------------------------------------------------------------------------------- /scripts/build-test-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/scripts/build-test-page.js -------------------------------------------------------------------------------- /scripts/compress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/scripts/compress.js -------------------------------------------------------------------------------- /scripts/dummy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/scripts/dummy.js -------------------------------------------------------------------------------- /scripts/get-fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/scripts/get-fixtures.js -------------------------------------------------------------------------------- /scripts/serve-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/scripts/serve-example.js -------------------------------------------------------------------------------- /scripts/serve-render-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/scripts/serve-render-tests.js -------------------------------------------------------------------------------- /src/constants/attr-usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/src/constants/attr-usage.js -------------------------------------------------------------------------------- /src/constants/dtypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/src/constants/dtypes.json -------------------------------------------------------------------------------- /src/constants/dtypesizes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/src/constants/dtypesizes.js -------------------------------------------------------------------------------- /src/constants/glsltypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/src/constants/glsltypes.js -------------------------------------------------------------------------------- /src/constants/orientation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/src/constants/orientation.json -------------------------------------------------------------------------------- /src/create-attr-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/src/create-attr-spec.js -------------------------------------------------------------------------------- /src/draw-segment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/src/draw-segment.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/src/index.js -------------------------------------------------------------------------------- /src/parse-pragmas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/src/parse-pragmas.js -------------------------------------------------------------------------------- /src/sanitize-buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/src/sanitize-buffer.js -------------------------------------------------------------------------------- /src/sanitize-in-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/src/sanitize-in-list.js -------------------------------------------------------------------------------- /test/fixtures/miter/basic/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/basic/expected.png -------------------------------------------------------------------------------- /test/fixtures/miter/basic/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/basic/fixture.json -------------------------------------------------------------------------------- /test/fixtures/miter/dash/extrapolate/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/dash/extrapolate/expected.png -------------------------------------------------------------------------------- /test/fixtures/miter/dash/extrapolate/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/dash/extrapolate/fixture.json -------------------------------------------------------------------------------- /test/fixtures/miter/dash/no-extrapolate/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/dash/no-extrapolate/expected.png -------------------------------------------------------------------------------- /test/fixtures/miter/dash/no-extrapolate/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/dash/no-extrapolate/fixture.json -------------------------------------------------------------------------------- /test/fixtures/miter/degenerate/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/degenerate/expected.png -------------------------------------------------------------------------------- /test/fixtures/miter/degenerate/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/degenerate/fixture.json -------------------------------------------------------------------------------- /test/fixtures/miter/depth/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/depth/expected.png -------------------------------------------------------------------------------- /test/fixtures/miter/depth/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/depth/fixture.json -------------------------------------------------------------------------------- /test/fixtures/miter/insert-caps/nan/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/insert-caps/nan/expected.png -------------------------------------------------------------------------------- /test/fixtures/miter/insert-caps/nan/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/insert-caps/nan/fixture.json -------------------------------------------------------------------------------- /test/fixtures/miter/insert-caps/none/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/insert-caps/none/expected.png -------------------------------------------------------------------------------- /test/fixtures/miter/insert-caps/none/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/insert-caps/none/fixture.json -------------------------------------------------------------------------------- /test/fixtures/miter/insert-caps/round/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/insert-caps/round/expected.png -------------------------------------------------------------------------------- /test/fixtures/miter/insert-caps/round/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/insert-caps/round/fixture.json -------------------------------------------------------------------------------- /test/fixtures/miter/insert-caps/square/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/insert-caps/square/expected.png -------------------------------------------------------------------------------- /test/fixtures/miter/insert-caps/square/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/insert-caps/square/fixture.json -------------------------------------------------------------------------------- /test/fixtures/miter/manual-caps/none/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/manual-caps/none/expected.png -------------------------------------------------------------------------------- /test/fixtures/miter/manual-caps/none/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/manual-caps/none/fixture.json -------------------------------------------------------------------------------- /test/fixtures/miter/manual-caps/round/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/manual-caps/round/expected.png -------------------------------------------------------------------------------- /test/fixtures/miter/manual-caps/round/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/manual-caps/round/fixture.json -------------------------------------------------------------------------------- /test/fixtures/miter/manual-caps/square/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/manual-caps/square/expected.png -------------------------------------------------------------------------------- /test/fixtures/miter/manual-caps/square/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/manual-caps/square/fixture.json -------------------------------------------------------------------------------- /test/fixtures/miter/sdf/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/sdf/expected.png -------------------------------------------------------------------------------- /test/fixtures/miter/sdf/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/miter/sdf/fixture.json -------------------------------------------------------------------------------- /test/fixtures/round/basic/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/basic/expected.png -------------------------------------------------------------------------------- /test/fixtures/round/basic/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/basic/fixture.json -------------------------------------------------------------------------------- /test/fixtures/round/dash/extrapolate/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/dash/extrapolate/expected.png -------------------------------------------------------------------------------- /test/fixtures/round/dash/extrapolate/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/dash/extrapolate/fixture.json -------------------------------------------------------------------------------- /test/fixtures/round/dash/no-extrapolate/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/dash/no-extrapolate/expected.png -------------------------------------------------------------------------------- /test/fixtures/round/dash/no-extrapolate/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/dash/no-extrapolate/fixture.json -------------------------------------------------------------------------------- /test/fixtures/round/degenerate/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/degenerate/expected.png -------------------------------------------------------------------------------- /test/fixtures/round/degenerate/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/degenerate/fixture.json -------------------------------------------------------------------------------- /test/fixtures/round/depth/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/depth/expected.png -------------------------------------------------------------------------------- /test/fixtures/round/depth/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/depth/fixture.json -------------------------------------------------------------------------------- /test/fixtures/round/insert-caps/none/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/insert-caps/none/expected.png -------------------------------------------------------------------------------- /test/fixtures/round/insert-caps/none/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/insert-caps/none/fixture.json -------------------------------------------------------------------------------- /test/fixtures/round/insert-caps/round/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/insert-caps/round/expected.png -------------------------------------------------------------------------------- /test/fixtures/round/insert-caps/round/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/insert-caps/round/fixture.json -------------------------------------------------------------------------------- /test/fixtures/round/insert-caps/square/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/insert-caps/square/expected.png -------------------------------------------------------------------------------- /test/fixtures/round/insert-caps/square/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/insert-caps/square/fixture.json -------------------------------------------------------------------------------- /test/fixtures/round/manual-caps/none/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/manual-caps/none/expected.png -------------------------------------------------------------------------------- /test/fixtures/round/manual-caps/none/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/manual-caps/none/fixture.json -------------------------------------------------------------------------------- /test/fixtures/round/manual-caps/round/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/manual-caps/round/expected.png -------------------------------------------------------------------------------- /test/fixtures/round/manual-caps/round/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/manual-caps/round/fixture.json -------------------------------------------------------------------------------- /test/fixtures/round/manual-caps/square/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/manual-caps/square/expected.png -------------------------------------------------------------------------------- /test/fixtures/round/manual-caps/square/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/manual-caps/square/fixture.json -------------------------------------------------------------------------------- /test/fixtures/round/postproject/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/postproject/expected.png -------------------------------------------------------------------------------- /test/fixtures/round/postproject/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/postproject/fixture.json -------------------------------------------------------------------------------- /test/fixtures/round/sdf/expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/sdf/expected.png -------------------------------------------------------------------------------- /test/fixtures/round/sdf/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/fixtures/round/sdf/fixture.json -------------------------------------------------------------------------------- /test/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/render.js -------------------------------------------------------------------------------- /test/util/create-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/util/create-context.js -------------------------------------------------------------------------------- /test/util/render-fixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rreusser/regl-gpu-lines/HEAD/test/util/render-fixture.js --------------------------------------------------------------------------------