@luma.gl/engine 9.0.0-alpha.15 → 9.0.0-alpha.16

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.
Files changed (172) hide show
  1. package/dist/animation/key-frames.d.ts +1 -1
  2. package/dist/animation/key-frames.d.ts.map +1 -1
  3. package/dist/animation/key-frames.js +51 -72
  4. package/dist/animation/timeline.d.ts +4 -4
  5. package/dist/animation/timeline.d.ts.map +1 -1
  6. package/dist/animation/timeline.js +94 -131
  7. package/dist/animation-loop/animation-loop.d.ts +2 -3
  8. package/dist/animation-loop/animation-loop.d.ts.map +1 -1
  9. package/dist/animation-loop/animation-loop.js +414 -473
  10. package/dist/animation-loop/animation-props.d.ts +1 -2
  11. package/dist/animation-loop/animation-props.d.ts.map +1 -1
  12. package/dist/animation-loop/animation-props.js +0 -1
  13. package/dist/animation-loop/make-animation-loop.d.ts +1 -1
  14. package/dist/animation-loop/make-animation-loop.d.ts.map +1 -1
  15. package/dist/animation-loop/make-animation-loop.js +26 -31
  16. package/dist/animation-loop/render-loop.js +17 -7
  17. package/dist/bundle.js +2 -2
  18. package/dist/dist.min.js +31 -0
  19. package/dist/es5/animation/key-frames.js +84 -0
  20. package/dist/es5/animation/key-frames.js.map +1 -0
  21. package/dist/es5/animation/timeline.js +183 -0
  22. package/dist/es5/animation/timeline.js.map +1 -0
  23. package/dist/es5/animation-loop/animation-loop.js +534 -0
  24. package/dist/es5/animation-loop/animation-loop.js.map +1 -0
  25. package/dist/es5/animation-loop/animation-props.js +2 -0
  26. package/dist/es5/animation-loop/animation-props.js.map +1 -0
  27. package/dist/es5/animation-loop/make-animation-loop.js +53 -0
  28. package/dist/es5/animation-loop/make-animation-loop.js.map +1 -0
  29. package/dist/es5/animation-loop/render-loop.js +39 -0
  30. package/dist/es5/animation-loop/render-loop.js.map +1 -0
  31. package/dist/es5/bundle.js +6 -0
  32. package/dist/es5/bundle.js.map +1 -0
  33. package/dist/es5/geometries/cone-geometry.js +43 -0
  34. package/dist/es5/geometries/cone-geometry.js.map +1 -0
  35. package/dist/es5/geometries/cube-geometry.js +84 -0
  36. package/dist/es5/geometries/cube-geometry.js.map +1 -0
  37. package/dist/es5/geometries/cylinder-geometry.js +39 -0
  38. package/dist/es5/geometries/cylinder-geometry.js.map +1 -0
  39. package/dist/es5/geometries/ico-sphere-geometry.js +185 -0
  40. package/dist/es5/geometries/ico-sphere-geometry.js.map +1 -0
  41. package/dist/es5/geometries/plane-geometry.js +137 -0
  42. package/dist/es5/geometries/plane-geometry.js.map +1 -0
  43. package/dist/es5/geometries/sphere-geometry.js +120 -0
  44. package/dist/es5/geometries/sphere-geometry.js.map +1 -0
  45. package/dist/es5/geometries/truncated-cone-geometry.js +160 -0
  46. package/dist/es5/geometries/truncated-cone-geometry.js.map +1 -0
  47. package/dist/es5/geometry/geometry-table.js +2 -0
  48. package/dist/es5/geometry/geometry-table.js.map +1 -0
  49. package/dist/es5/geometry/geometry-utils.js +39 -0
  50. package/dist/es5/geometry/geometry-utils.js.map +1 -0
  51. package/dist/es5/geometry/geometry.js +150 -0
  52. package/dist/es5/geometry/geometry.js.map +1 -0
  53. package/dist/es5/geometry/primitive-utils.js +2 -0
  54. package/dist/es5/geometry/primitive-utils.js.map +1 -0
  55. package/dist/es5/index.js +112 -0
  56. package/dist/es5/index.js.map +1 -0
  57. package/dist/es5/lib/clip-space.js +2 -0
  58. package/dist/es5/lib/clip-space.js.map +1 -0
  59. package/dist/es5/lib/model-utils.js +52 -0
  60. package/dist/es5/lib/model-utils.js.map +1 -0
  61. package/dist/es5/lib/model.js +173 -0
  62. package/dist/es5/lib/model.js.map +1 -0
  63. package/dist/es5/lib/pipeline-factory.js +244 -0
  64. package/dist/es5/lib/pipeline-factory.js.map +1 -0
  65. package/dist/esm/animation/key-frames.js +57 -0
  66. package/dist/esm/animation/key-frames.js.map +1 -0
  67. package/dist/esm/animation/timeline.js +113 -0
  68. package/dist/esm/animation/timeline.js.map +1 -0
  69. package/dist/esm/animation-loop/animation-loop.js +367 -0
  70. package/dist/esm/animation-loop/animation-loop.js.map +1 -0
  71. package/dist/esm/animation-loop/animation-props.js +2 -0
  72. package/dist/esm/animation-loop/animation-props.js.map +1 -0
  73. package/dist/esm/animation-loop/make-animation-loop.js +28 -0
  74. package/dist/esm/animation-loop/make-animation-loop.js.map +1 -0
  75. package/dist/esm/animation-loop/render-loop.js +7 -0
  76. package/dist/esm/animation-loop/render-loop.js.map +1 -0
  77. package/dist/esm/bundle.js +4 -0
  78. package/dist/esm/bundle.js.map +1 -0
  79. package/dist/esm/geometries/cone-geometry.js +21 -0
  80. package/dist/esm/geometries/cone-geometry.js.map +1 -0
  81. package/dist/esm/geometries/cube-geometry.js +67 -0
  82. package/dist/esm/geometries/cube-geometry.js.map +1 -0
  83. package/dist/esm/geometries/cylinder-geometry.js +18 -0
  84. package/dist/esm/geometries/cylinder-geometry.js.map +1 -0
  85. package/dist/esm/geometries/ico-sphere-geometry.js +170 -0
  86. package/dist/esm/geometries/ico-sphere-geometry.js.map +1 -0
  87. package/dist/esm/geometries/plane-geometry.js +119 -0
  88. package/dist/esm/geometries/plane-geometry.js.map +1 -0
  89. package/dist/esm/geometries/sphere-geometry.js +102 -0
  90. package/dist/esm/geometries/sphere-geometry.js.map +1 -0
  91. package/dist/esm/geometries/truncated-cone-geometry.js +136 -0
  92. package/dist/esm/geometries/truncated-cone-geometry.js.map +1 -0
  93. package/dist/esm/geometry/geometry-table.js +2 -0
  94. package/dist/esm/geometry/geometry-table.js.map +1 -0
  95. package/dist/esm/geometry/geometry-utils.js +37 -0
  96. package/dist/esm/geometry/geometry-utils.js.map +1 -0
  97. package/dist/esm/geometry/geometry.js +119 -0
  98. package/dist/esm/geometry/geometry.js.map +1 -0
  99. package/dist/esm/geometry/primitive-utils.js +2 -0
  100. package/dist/esm/geometry/primitive-utils.js.map +1 -0
  101. package/dist/esm/index.js +16 -0
  102. package/dist/esm/index.js.map +1 -0
  103. package/dist/esm/lib/clip-space.js +2 -0
  104. package/dist/esm/lib/clip-space.js.map +1 -0
  105. package/dist/esm/lib/model-utils.js +40 -0
  106. package/dist/esm/lib/model-utils.js.map +1 -0
  107. package/dist/esm/lib/model.js +146 -0
  108. package/dist/esm/lib/model.js.map +1 -0
  109. package/dist/esm/lib/pipeline-factory.js +180 -0
  110. package/dist/esm/lib/pipeline-factory.js.map +1 -0
  111. package/dist/geometries/cone-geometry.d.ts +1 -1
  112. package/dist/geometries/cone-geometry.d.ts.map +1 -1
  113. package/dist/geometries/cone-geometry.js +12 -17
  114. package/dist/geometries/cube-geometry.d.ts +1 -1
  115. package/dist/geometries/cube-geometry.d.ts.map +1 -1
  116. package/dist/geometries/cube-geometry.js +187 -56
  117. package/dist/geometries/cylinder-geometry.d.ts +1 -1
  118. package/dist/geometries/cylinder-geometry.d.ts.map +1 -1
  119. package/dist/geometries/cylinder-geometry.js +10 -14
  120. package/dist/geometries/ico-sphere-geometry.d.ts +1 -1
  121. package/dist/geometries/ico-sphere-geometry.d.ts.map +1 -1
  122. package/dist/geometries/ico-sphere-geometry.js +141 -170
  123. package/dist/geometries/plane-geometry.d.ts +1 -1
  124. package/dist/geometries/plane-geometry.d.ts.map +1 -1
  125. package/dist/geometries/plane-geometry.js +93 -121
  126. package/dist/geometries/sphere-geometry.d.ts +1 -1
  127. package/dist/geometries/sphere-geometry.d.ts.map +1 -1
  128. package/dist/geometries/sphere-geometry.js +76 -100
  129. package/dist/geometries/truncated-cone-geometry.d.ts +1 -1
  130. package/dist/geometries/truncated-cone-geometry.d.ts.map +1 -1
  131. package/dist/geometries/truncated-cone-geometry.js +104 -131
  132. package/dist/geometry/geometry-table.d.ts +1 -1
  133. package/dist/geometry/geometry-table.d.ts.map +1 -1
  134. package/dist/geometry/geometry-table.js +0 -1
  135. package/dist/geometry/geometry-utils.js +22 -41
  136. package/dist/geometry/geometry.d.ts +4 -4
  137. package/dist/geometry/geometry.d.ts.map +1 -1
  138. package/dist/geometry/geometry.js +96 -142
  139. package/dist/geometry/primitive-utils.js +30 -1
  140. package/dist/index.js +20 -16
  141. package/dist/lib/clip-space.js +50 -1
  142. package/dist/lib/model-utils.js +97 -29
  143. package/dist/lib/model.d.ts +1 -1
  144. package/dist/lib/model.d.ts.map +1 -1
  145. package/dist/lib/model.js +122 -166
  146. package/dist/lib/pipeline-factory.d.ts +3 -3
  147. package/dist/lib/pipeline-factory.d.ts.map +1 -1
  148. package/dist/lib/pipeline-factory.js +136 -204
  149. package/package.json +11 -10
  150. package/dist/animation/key-frames.js.map +0 -1
  151. package/dist/animation/timeline.js.map +0 -1
  152. package/dist/animation-loop/animation-loop.js.map +0 -1
  153. package/dist/animation-loop/animation-props.js.map +0 -1
  154. package/dist/animation-loop/make-animation-loop.js.map +0 -1
  155. package/dist/animation-loop/render-loop.js.map +0 -1
  156. package/dist/bundle.js.map +0 -1
  157. package/dist/geometries/cone-geometry.js.map +0 -1
  158. package/dist/geometries/cube-geometry.js.map +0 -1
  159. package/dist/geometries/cylinder-geometry.js.map +0 -1
  160. package/dist/geometries/ico-sphere-geometry.js.map +0 -1
  161. package/dist/geometries/plane-geometry.js.map +0 -1
  162. package/dist/geometries/sphere-geometry.js.map +0 -1
  163. package/dist/geometries/truncated-cone-geometry.js.map +0 -1
  164. package/dist/geometry/geometry-table.js.map +0 -1
  165. package/dist/geometry/geometry-utils.js.map +0 -1
  166. package/dist/geometry/geometry.js.map +0 -1
  167. package/dist/geometry/primitive-utils.js.map +0 -1
  168. package/dist/index.js.map +0 -1
  169. package/dist/lib/clip-space.js.map +0 -1
  170. package/dist/lib/model-utils.js.map +0 -1
  171. package/dist/lib/model.js.map +0 -1
  172. package/dist/lib/pipeline-factory.js.map +0 -1
package/dist/lib/model.js CHANGED
@@ -1,182 +1,138 @@
1
- import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
1
+ // luma.gl, MIT license
2
2
  import { RenderPipeline } from '@luma.gl/api';
3
- import { getAttributeBuffersFromGeometry, getIndexBufferFromGeometry } from './model-utils';
4
- import { PipelineFactory } from './pipeline-factory';
5
- const DEFAULT_MODEL_PROPS = { ...RenderPipeline._DEFAULT_PROPS,
6
- vs: null,
7
- fs: null,
8
- id: 'unnamed',
9
- handle: undefined,
10
- userData: {},
11
- modules: [],
12
- moduleSettings: {},
13
- geometry: null
3
+ import { getAttributeBuffersFromGeometry, getIndexBufferFromGeometry } from './model-utils.js';
4
+ import { PipelineFactory } from './pipeline-factory.js';
5
+ const DEFAULT_MODEL_PROPS = {
6
+ ...RenderPipeline._DEFAULT_PROPS,
7
+ vs: null,
8
+ fs: null,
9
+ id: 'unnamed',
10
+ handle: undefined,
11
+ userData: {},
12
+ modules: [],
13
+ moduleSettings: {},
14
+ geometry: null
14
15
  };
16
+ /** v9 API */
15
17
  export class Model {
16
- constructor(device, props) {
17
- _defineProperty(this, "device", void 0);
18
-
19
- _defineProperty(this, "pipeline", void 0);
20
-
21
- _defineProperty(this, "id", void 0);
22
-
23
- _defineProperty(this, "vs", void 0);
24
-
25
- _defineProperty(this, "fs", null);
26
-
27
- _defineProperty(this, "topology", void 0);
28
-
29
- _defineProperty(this, "vertexCount", void 0);
30
-
31
- _defineProperty(this, "props", void 0);
32
-
33
- _defineProperty(this, "_getModuleUniforms", void 0);
34
-
35
- this.props = { ...DEFAULT_MODEL_PROPS,
36
- ...props
37
- };
38
- props = this.props;
39
- this.id = this.props.id;
40
- this.device = device;
41
-
42
- if (!props.vs) {
43
- throw new Error('no vertex shader');
18
+ constructor(device, props) {
19
+ this.fs = null;
20
+ this.props = { ...DEFAULT_MODEL_PROPS, ...props };
21
+ props = this.props;
22
+ this.id = this.props.id;
23
+ this.device = device;
24
+ // Create the pipeline
25
+ if (!props.vs) {
26
+ throw new Error('no vertex shader');
27
+ }
28
+ this.vs = getShaderSource(this.device, props.vs);
29
+ if (props.fs) {
30
+ this.fs = getShaderSource(this.device, props.fs);
31
+ }
32
+ this.vertexCount = this.props.vertexCount;
33
+ this.topology = this.props.topology;
34
+ if (this.props.geometry) {
35
+ this.vertexCount = this.props.geometry.vertexCount;
36
+ this.topology = this.props.geometry.topology || 'triangle-list';
37
+ }
38
+ const pipelineFactory = PipelineFactory.getDefaultPipelineFactory(this.device);
39
+ const { pipeline, getUniforms } = pipelineFactory.createRenderPipeline({
40
+ ...this.props,
41
+ vs: this.vs,
42
+ fs: this.fs,
43
+ topology: this.topology,
44
+ parameters: props.parameters,
45
+ layout: props.layout
46
+ });
47
+ this.pipeline = pipeline;
48
+ this._getModuleUniforms = getUniforms;
49
+ if (this.props.geometry) {
50
+ this._setGeometry(this.props.geometry);
51
+ }
52
+ this.setUniforms(this._getModuleUniforms()); // Get all default module uniforms
53
+ this.setProps(this.props);
44
54
  }
45
-
46
- this.vs = getShaderSource(this.device, props.vs);
47
-
48
- if (props.fs) {
49
- this.fs = getShaderSource(this.device, props.fs);
55
+ destroy() {
56
+ this.pipeline.destroy();
50
57
  }
51
-
52
- this.vertexCount = this.props.vertexCount;
53
- this.topology = this.props.topology;
54
-
55
- if (this.props.geometry) {
56
- this.vertexCount = this.props.geometry.vertexCount;
57
- this.topology = this.props.geometry.topology || 'triangle-list';
58
+ draw(renderPass) {
59
+ this.pipeline.draw({
60
+ renderPass,
61
+ vertexCount: this.vertexCount,
62
+ instanceCount: this.props.instanceCount
63
+ });
64
+ return this;
58
65
  }
59
-
60
- const pipelineFactory = PipelineFactory.getDefaultPipelineFactory(this.device);
61
- const {
62
- pipeline,
63
- getUniforms
64
- } = pipelineFactory.createRenderPipeline({ ...this.props,
65
- vs: this.vs,
66
- fs: this.fs,
67
- topology: this.topology,
68
- parameters: props.parameters,
69
- layout: props.layout
70
- });
71
- this.pipeline = pipeline;
72
- this._getModuleUniforms = getUniforms;
73
-
74
- if (this.props.geometry) {
75
- this._setGeometry(this.props.geometry);
66
+ setProps(props) {
67
+ if (props.indices) {
68
+ this.setIndexBuffer(props.indices);
69
+ }
70
+ if (props.attributes) {
71
+ this.setAttributes(props.attributes);
72
+ }
73
+ if (props.bindings) {
74
+ this.setBindings(props.bindings);
75
+ }
76
+ if (props.uniforms) {
77
+ this.setUniforms(props.uniforms);
78
+ }
79
+ if (props.moduleSettings) {
80
+ this.updateModuleSettings(props.moduleSettings);
81
+ }
82
+ return this;
76
83
  }
77
-
78
- this.setUniforms(this._getModuleUniforms());
79
- this.setProps(this.props);
80
- }
81
-
82
- destroy() {
83
- this.pipeline.destroy();
84
- }
85
-
86
- draw(renderPass) {
87
- this.pipeline.draw({
88
- renderPass,
89
- vertexCount: this.vertexCount,
90
- instanceCount: this.props.instanceCount
91
- });
92
- return this;
93
- }
94
-
95
- setProps(props) {
96
- if (props.indices) {
97
- this.setIndexBuffer(props.indices);
84
+ updateModuleSettings(props) {
85
+ const uniforms = this._getModuleUniforms(props);
86
+ this.setUniforms(uniforms);
87
+ return this;
98
88
  }
99
-
100
- if (props.attributes) {
101
- this.setAttributes(props.attributes);
89
+ setIndexBuffer(indices) {
90
+ this.pipeline.setIndexBuffer(indices);
91
+ // this._indices = indices;
92
+ return this;
102
93
  }
103
-
104
- if (props.bindings) {
105
- this.setBindings(props.bindings);
94
+ setAttributes(attributes) {
95
+ this.pipeline.setAttributes(attributes);
96
+ Object.assign(this.props.attributes, attributes);
97
+ return this;
106
98
  }
107
-
108
- if (props.uniforms) {
109
- this.setUniforms(props.uniforms);
99
+ /** Set the bindings */
100
+ setBindings(bindings) {
101
+ this.pipeline.setBindings(bindings);
102
+ Object.assign(this.props.bindings, bindings);
103
+ return this;
110
104
  }
111
-
112
- if (props.moduleSettings) {
113
- this.updateModuleSettings(props.moduleSettings);
105
+ setUniforms(uniforms) {
106
+ this.pipeline.setUniforms(uniforms);
107
+ Object.assign(this.props.uniforms, uniforms);
108
+ return this;
114
109
  }
115
-
116
- return this;
117
- }
118
-
119
- updateModuleSettings(props) {
120
- const uniforms = this._getModuleUniforms(props);
121
-
122
- this.setUniforms(uniforms);
123
- return this;
124
- }
125
-
126
- setIndexBuffer(indices) {
127
- this.pipeline.setIndexBuffer(indices);
128
- return this;
129
- }
130
-
131
- setAttributes(attributes) {
132
- this.pipeline.setAttributes(attributes);
133
- Object.assign(this.props.attributes, attributes);
134
- return this;
135
- }
136
-
137
- setBindings(bindings) {
138
- this.pipeline.setBindings(bindings);
139
- Object.assign(this.props.bindings, bindings);
140
- return this;
141
- }
142
-
143
- setUniforms(uniforms) {
144
- this.pipeline.setUniforms(uniforms);
145
- Object.assign(this.props.uniforms, uniforms);
146
- return this;
147
- }
148
-
149
- _setGeometry(geometry) {
150
- const geometryBuffers = getAttributeBuffersFromGeometry(this.device, geometry);
151
- this.setAttributes(geometryBuffers);
152
- const indexBuffer = getIndexBufferFromGeometry(this.device, geometry);
153
-
154
- if (indexBuffer) {
155
- this.setIndexBuffer(indexBuffer);
110
+ _setGeometry(geometry) {
111
+ // this._deleteGeometryBuffers();
112
+ const geometryBuffers = getAttributeBuffersFromGeometry(this.device, geometry);
113
+ this.setAttributes(geometryBuffers);
114
+ const indexBuffer = getIndexBufferFromGeometry(this.device, geometry);
115
+ if (indexBuffer) {
116
+ this.setIndexBuffer(indexBuffer);
117
+ }
156
118
  }
157
- }
158
-
159
119
  }
160
-
120
+ /** Create a shader from the different overloads */
161
121
  function getShaderSource(device, shader) {
162
- if (typeof shader === 'string') {
163
- return shader;
164
- }
165
-
166
- switch (device.info.type) {
167
- case 'webgpu':
168
- if (shader !== null && shader !== void 0 && shader.wgsl) {
169
- return shader.wgsl;
170
- }
171
-
172
- throw new Error('WebGPU does not support GLSL shaders');
173
-
174
- default:
175
- if (shader !== null && shader !== void 0 && shader.glsl) {
176
- return shader.glsl;
177
- }
178
-
179
- throw new Error('WebGL does not support WGSL shaders');
180
- }
122
+ // TODO - detect WGSL/GLSL and throw an error if not supported
123
+ if (typeof shader === 'string') {
124
+ return shader;
125
+ }
126
+ switch (device.info.type) {
127
+ case 'webgpu':
128
+ if (shader?.wgsl) {
129
+ return shader.wgsl;
130
+ }
131
+ throw new Error('WebGPU does not support GLSL shaders');
132
+ default:
133
+ if (shader?.glsl) {
134
+ return shader.glsl;
135
+ }
136
+ throw new Error('WebGL does not support WGSL shaders');
137
+ }
181
138
  }
182
- //# sourceMappingURL=model.js.map
@@ -1,7 +1,7 @@
1
1
  import type { RenderPipelineParameters, PrimitiveTopology, ShaderLayout } from '@luma.gl/api';
2
2
  import { Device, RenderPipeline } from '@luma.gl/api/';
3
3
  import type { ShaderModule } from '@luma.gl/shadertools';
4
- export declare type GetRenderPipelineOptions = {
4
+ export type GetRenderPipelineOptions = {
5
5
  vs: string;
6
6
  fs: string | null;
7
7
  topology: PrimitiveTopology;
@@ -14,7 +14,7 @@ export declare type GetRenderPipelineOptions = {
14
14
  varyings?: string[];
15
15
  bufferMode?: number;
16
16
  };
17
- export declare type GetComputePipelineOptions = {
17
+ export type GetComputePipelineOptions = {
18
18
  cs: string;
19
19
  parameters?: RenderPipelineParameters;
20
20
  modules?: ShaderModule[];
@@ -24,7 +24,7 @@ export declare type GetComputePipelineOptions = {
24
24
  varyings?: string[];
25
25
  bufferMode?: number;
26
26
  };
27
- declare type GetUniformsFunc = (props?: Record<string, any>) => Record<string, any>;
27
+ type GetUniformsFunc = (props?: Record<string, any>) => Record<string, any>;
28
28
  /** Efficiently create shared pipelines with varying parameters */
29
29
  export declare class PipelineFactory {
30
30
  readonly device: Device;
@@ -1 +1 @@
1
- {"version":3,"file":"pipeline-factory.d.ts","sourceRoot":"","sources":["../../src/lib/pipeline-factory.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"pipeline-factory.d.ts","sourceRoot":"","sources":["../../src/lib/pipeline-factory.ts"],"names":[],"mappings":"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"}