gl-draw 0.17.0-beta.13 → 0.17.0-beta.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -11,9 +11,8 @@ declare class OutputPassFix extends OutputPass {
|
|
|
11
11
|
value: number;
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
|
-
|
|
14
|
+
fsQuad: FullScreenQuad | undefined;
|
|
15
15
|
_fsQuad: FullScreenQuad | undefined;
|
|
16
16
|
}
|
|
17
17
|
import { OutputPass } from 'three/examples/jsm/postprocessing/OutputPass';
|
|
18
|
-
import { RawShaderMaterial } from 'three';
|
|
19
18
|
import { FullScreenQuad } from 'three/examples/jsm/postprocessing/Pass';
|
|
@@ -20,6 +20,7 @@ declare const _default: (options: Options) => {
|
|
|
20
20
|
name: string;
|
|
21
21
|
index: import("three").BufferAttribute | null;
|
|
22
22
|
indirect: import("three/src/renderers/common/IndirectStorageBufferAttribute").default | null;
|
|
23
|
+
indirectOffset: number | number[];
|
|
23
24
|
attributes: import("three").NormalBufferAttributes;
|
|
24
25
|
morphAttributes: {
|
|
25
26
|
position?: Array<import("three").BufferAttribute | import("three").InterleavedBufferAttribute> | undefined;
|
|
@@ -38,7 +39,7 @@ declare const _default: (options: Options) => {
|
|
|
38
39
|
readonly isBufferGeometry: true;
|
|
39
40
|
getIndex(): import("three").BufferAttribute | null;
|
|
40
41
|
setIndex(index: import("three").BufferAttribute | number[] | null): any;
|
|
41
|
-
setIndirect(indirect: import("three/src/renderers/common/IndirectStorageBufferAttribute").default | null): any;
|
|
42
|
+
setIndirect(indirect: import("three/src/renderers/common/IndirectStorageBufferAttribute").default | null, indirectOffset?: number | number[]): any;
|
|
42
43
|
getIndirect(): import("three/src/renderers/common/IndirectStorageBufferAttribute").default | null;
|
|
43
44
|
setAttribute<K extends string>(name: K, attribute: import("three").BufferAttribute | import("three").InterleavedBufferAttribute): any;
|
|
44
45
|
getAttribute<K extends string>(name: K): import("three").BufferAttribute | import("three").InterleavedBufferAttribute;
|
|
@@ -26,6 +26,7 @@ export default class extends BaseObject {
|
|
|
26
26
|
name: string;
|
|
27
27
|
index: import("three").BufferAttribute | null;
|
|
28
28
|
indirect: import("three/src/renderers/common/IndirectStorageBufferAttribute").default | null;
|
|
29
|
+
indirectOffset: number | number[];
|
|
29
30
|
attributes: import("three").NormalBufferAttributes;
|
|
30
31
|
morphAttributes: {
|
|
31
32
|
position?: Array<import("three").BufferAttribute | import("three").InterleavedBufferAttribute> | undefined;
|
|
@@ -44,7 +45,7 @@ export default class extends BaseObject {
|
|
|
44
45
|
readonly isBufferGeometry: true;
|
|
45
46
|
getIndex(): import("three").BufferAttribute | null;
|
|
46
47
|
setIndex(index: import("three").BufferAttribute | number[] | null): any;
|
|
47
|
-
setIndirect(indirect: import("three/src/renderers/common/IndirectStorageBufferAttribute").default | null): any;
|
|
48
|
+
setIndirect(indirect: import("three/src/renderers/common/IndirectStorageBufferAttribute").default | null, indirectOffset?: number | number[]): any;
|
|
48
49
|
getIndirect(): import("three/src/renderers/common/IndirectStorageBufferAttribute").default | null;
|
|
49
50
|
setAttribute<K extends string>(name: K, attribute: import("three").BufferAttribute | import("three").InterleavedBufferAttribute): any;
|
|
50
51
|
getAttribute<K extends string>(name: K): import("three").BufferAttribute | import("three").InterleavedBufferAttribute;
|