-
-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WebGPURenderer: Tree-shaking 1/2 - revision (#1218)
* WebGPURenderer: Tree-shaking 1/2 - revision * Update three.js * Add src * Update patch and delete src * Add src * Update patch and delete src * Update declarations
- Loading branch information
1 parent
fbf4dc6
commit e583e10
Showing
6 changed files
with
62 additions
and
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import Node from "../core/Node.js"; | ||
import { NodeRepresentation, ShaderNodeObject } from "../tsl/TSLCore.js"; | ||
|
||
export const sRGBToLinearShader: (color: NodeRepresentation) => ShaderNodeObject<Node>; | ||
export const sRGBToLinear: (color: NodeRepresentation) => ShaderNodeObject<Node>; | ||
|
||
export const LinearTosRGBShader: (color: NodeRepresentation) => ShaderNodeObject<Node>; | ||
export const LinearTosRGB: (color: NodeRepresentation) => ShaderNodeObject<Node>; |