-
-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce13853
commit 3eaed27
Showing
9 changed files
with
47 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import Node from "../core/Node.js"; | ||
import { ShaderNodeObject } from "../tsl/TSLCore.js"; | ||
|
||
declare class BarrierNode extends Node { | ||
scope: string; | ||
|
||
constructor(scope: string); | ||
} | ||
|
||
export const workgroupBarrier: () => ShaderNodeObject<Node>; | ||
export const storageBarrier: () => ShaderNodeObject<Node>; | ||
export const textureBarrier: () => ShaderNodeObject<Node>; |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Node from "../core/Node.js"; | ||
import { ShaderNodeObject } from '../tsl/TSLCore.js'; | ||
|
||
declare class WorkgroupInfoNode extends Node { | ||
bufferType: string; | ||
bufferCount: number; | ||
|
||
readonly isWorkgroupInfoNode: true; | ||
|
||
scope: string; | ||
|
||
constructor(scope: string, bufferType: string, bufferCount?: number); | ||
} | ||
|
||
export default WorkgroupInfoNode; | ||
|
||
export const workgroupArray: (type: string, count?: number) => ShaderNodeObject<WorkgroupInfoNode>; |
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