Browse Source

TS: Added file for UnpackDepthRGBAShader.

Mugen87 6 years ago
parent
commit
32c3dd01db
1 changed files with 12 additions and 0 deletions
  1. 12 0
      examples/jsm/shaders/UnpackDepthRGBAShader.d.ts

+ 12 - 0
examples/jsm/shaders/UnpackDepthRGBAShader.d.ts

@@ -0,0 +1,12 @@
+import {
+  Uniform
+} from '../../../src/Three';
+
+export interface UnpackDepthRGBAShader {
+  uniforms: {
+    tDiffuse: Uniform;
+    opacity: Uniform;
+  };
+  vertexShader: string;
+  fragmentShader:string;
+}