Skip to content

Instantly share code, notes, and snippets.

@robertleeplummerjr
Created December 16, 2019 15:49
Show Gist options
  • Save robertleeplummerjr/ecbebac4c6ae2de4ca049d3ad2432f72 to your computer and use it in GitHub Desktop.
Save robertleeplummerjr/ecbebac4c6ae2de4ca049d3ad2432f72 to your computer and use it in GitHub Desktop.
class GPU {
createKernel<KF extends KernelFunction>(kernel: KF, settings?: IGPUKernelSettings):
((...args: Parameters<KF>) =>
ReturnType<KF>[]
| ReturnType<KF>[][]
| ReturnType<KF>[][][]
| Texture
| void
)
& Kernel;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment