├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── StackedAlphaVideo.ts ├── gl-helpers.ts └── index.ts ├── test └── index.html └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/stacked-alpha-video/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/stacked-alpha-video/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/stacked-alpha-video/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/stacked-alpha-video/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/stacked-alpha-video/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/StackedAlphaVideo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/stacked-alpha-video/HEAD/src/StackedAlphaVideo.ts -------------------------------------------------------------------------------- /src/gl-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/stacked-alpha-video/HEAD/src/gl-helpers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/stacked-alpha-video/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/stacked-alpha-video/HEAD/test/index.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/stacked-alpha-video/HEAD/tsconfig.json --------------------------------------------------------------------------------