-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* feat: support multiple render target (#43) * feat: support multiple render targets #42 * chore: split utils * chore: commit changeset * chore(release): bump version (#45) Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
c6f2498
commit 8399213
Showing
29 changed files
with
417 additions
and
298 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
export { PrimitiveTopologyPoints } from './primitive-topology-points'; | ||
export { PrimitiveTopologyTriangles } from './primitive-topology-triangles'; | ||
export { DrawIndex } from './draw-index'; | ||
export { MSAA } from './msaa'; | ||
export { Blit } from './blit'; | ||
export { RotatingCube } from './rotating-cube'; | ||
export { Stencil } from './stencil'; | ||
export { Scissor } from './scissor'; | ||
export { TwoCubes } from './two-cubes'; | ||
export { TexturedCube } from './textured-cube'; | ||
export { Sampler } from './sampler'; | ||
export { InstancedCubes } from './instanced-cubes'; | ||
export { Cubemap } from './cubemap'; | ||
export { Add2Vectors } from './add-2-vectors'; | ||
export { ComputeBoids } from './compute-boids'; | ||
export { AR } from './ar'; | ||
export { ARThree } from './ar-three'; | ||
export { render as PrimitiveTopologyPoints } from './primitive-topology-points'; | ||
export { render as PrimitiveTopologyTriangles } from './primitive-topology-triangles'; | ||
export { render as DrawIndex } from './draw-index'; | ||
export { render as MSAA } from './msaa'; | ||
export { render as MultipleRenderTargets } from './multiple-render-targets'; | ||
export { render as Blit } from './blit'; | ||
export { render as RotatingCube } from './rotating-cube'; | ||
export { render as Stencil } from './stencil'; | ||
export { render as Scissor } from './scissor'; | ||
export { render as TwoCubes } from './two-cubes'; | ||
export { render as TexturedCube } from './textured-cube'; | ||
export { render as Sampler } from './sampler'; | ||
export { render as InstancedCubes } from './instanced-cubes'; | ||
export { render as Cubemap } from './cubemap'; | ||
export { render as Add2Vectors } from './add-2-vectors'; | ||
export { render as ComputeBoids } from './compute-boids'; | ||
export { render as AR } from './ar'; | ||
export { render as ARThree } from './ar-three'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.