@woosh/meep-engine 2.111.14 → 2.112.0

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 (27) hide show
  1. package/package.json +1 -1
  2. package/src/engine/graphics/geometry/AttributeGroupSpec.d.ts.map +1 -0
  3. package/src/engine/graphics/geometry/{VertexDataSpec.js → AttributeGroupSpec.js} +6 -6
  4. package/src/engine/graphics/geometry/AttributeSpec.d.ts +4 -0
  5. package/src/engine/graphics/particles/particular/engine/emitter/PARTICULAR_PARTICLE_SPECIFICATION.d.ts +1 -2
  6. package/src/engine/graphics/particles/particular/engine/emitter/PARTICULAR_PARTICLE_SPECIFICATION.d.ts.map +1 -1
  7. package/src/engine/graphics/particles/particular/engine/emitter/PARTICULAR_PARTICLE_SPECIFICATION.js +3 -3
  8. package/src/engine/graphics/particles/particular/engine/emitter/ParticlePool.d.ts +4 -4
  9. package/src/engine/graphics/particles/particular/engine/emitter/ParticlePool.d.ts.map +1 -1
  10. package/src/engine/graphics/particles/particular/engine/emitter/ParticlePool.js +3 -3
  11. package/src/engine/graphics/particles/particular/engine/renderers/billboard/BILLBOARD_PARTICLE_SPECIFICATION.d.ts +1 -2
  12. package/src/engine/graphics/particles/particular/engine/renderers/billboard/BILLBOARD_PARTICLE_SPECIFICATION.d.ts.map +1 -1
  13. package/src/engine/graphics/particles/particular/engine/renderers/billboard/BILLBOARD_PARTICLE_SPECIFICATION.js +3 -3
  14. package/src/engine/graphics/particles/particular/group/ParticleSpecification.d.ts +1 -1
  15. package/src/engine/graphics/particles/particular/group/ParticleSpecification.js +1 -1
  16. package/src/engine/graphics/render/frame_graph/resource/{TextureDescriptor.d.ts → TextureResourceDescriptor.d.ts} +5 -5
  17. package/src/engine/graphics/render/frame_graph/resource/TextureResourceDescriptor.d.ts.map +1 -0
  18. package/src/engine/graphics/render/frame_graph/resource/{TextureDescriptor.js → TextureResourceDescriptor.js} +3 -3
  19. package/src/engine/graphics/render/frame_graph/sample/deferred/GBufferDrawPass.d.ts.map +1 -1
  20. package/src/engine/graphics/render/frame_graph/sample/deferred/GBufferDrawPass.js +4 -4
  21. package/src/engine/graphics/render/frame_graph/sample/deferred/run.js +2 -2
  22. package/src/engine/graphics/render/frame_graph/sample/meep-v1/ColorDepthPass.d.ts.map +1 -1
  23. package/src/engine/graphics/render/frame_graph/sample/meep-v1/ColorDepthPass.js +3 -3
  24. package/src/engine/navigation/ecs/components/Path.js +3 -3
  25. package/src/engine/graphics/geometry/VertexDataSpec.d.ts.map +0 -1
  26. package/src/engine/graphics/render/frame_graph/resource/TextureDescriptor.d.ts.map +0 -1
  27. /package/src/engine/graphics/geometry/{VertexDataSpec.d.ts → AttributeGroupSpec.d.ts} +0 -0
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "description": "Fully featured ECS game engine written in JavaScript",
6
6
  "type": "module",
7
7
  "author": "Alexander Goldring",
8
- "version": "2.111.14",
8
+ "version": "2.112.0",
9
9
  "main": "build/meep.module.js",
10
10
  "module": "build/meep.module.js",
11
11
  "exports": {
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AttributeGroupSpec.d.ts","sourceRoot":"","sources":["../../../../../src/engine/graphics/geometry/AttributeGroupSpec.js"],"names":[],"mappings":"AAYA;;;GAGG;AACH;IAeI;;;;OAIG;IACH,2BAHW,aAAa,GACX,kBAAkB,CAQ9B;IAxBD;;;OAGG;IACH,YAFU,aAAa,EAAE,CAET;IAsBhB;;;;OAIG;IACH,yBAHW,MAAM,GACL,aAAa,GAAC,SAAS,CAgBlC;IAED;;;OAGG;IACH,8BAFW,MAAM,GADJ,MAAM,CAiBlB;IAED;;;OAGG;IACH,oBAFW,aAAa,EAAE,QAOzB;IAED;;;;OAIG;IACH,eAHW,aAAa,GACZ,kBAAkB,CAkB7B;IAED;;;OAGG;IACH,0BAFW,aAAa,EAAE,QAQzB;IAED,cAMC;IAED;;;;OAIG;IACH,cAHW,kBAAkB,GAChB,OAAO,CAQnB;IAED,sBASC;IAED,eAMC;IAED;;MAIC;IAED;;aAkBC;IAED;;;OAGG;IACH,eAFa,MAAM,CAelB;IAIL;;;OAGG;IACH,+BAFU,OAAO,CAEgC;;CAPhD;8BAnN6B,oBAAoB"}
@@ -14,7 +14,7 @@ const RESERVED_HASH = 1234567;
14
14
  * Describes a set of data attributes. A good analogy would be "all data associated with geometry vertex"
15
15
  * @example "uv","position" and "normal" attributes of geometry vertices
16
16
  */
17
- export class VertexDataSpec {
17
+ export class AttributeGroupSpec {
18
18
 
19
19
  /**
20
20
  *
@@ -32,10 +32,10 @@ export class VertexDataSpec {
32
32
  /**
33
33
  *
34
34
  * @param {AttributeSpec} attributes
35
- * @returns {VertexDataSpec}
35
+ * @returns {AttributeGroupSpec}
36
36
  */
37
37
  static from(...attributes) {
38
- const r = new VertexDataSpec();
38
+ const r = new AttributeGroupSpec();
39
39
 
40
40
  r.addMany(attributes);
41
41
 
@@ -97,7 +97,7 @@ export class VertexDataSpec {
97
97
  /**
98
98
  *
99
99
  * @param {AttributeSpec} attribute
100
- * @return {VertexDataSpec}
100
+ * @return {AttributeGroupSpec}
101
101
  */
102
102
  add(attribute) {
103
103
 
@@ -139,7 +139,7 @@ export class VertexDataSpec {
139
139
 
140
140
  /**
141
141
  *
142
- * @param {VertexDataSpec} other
142
+ * @param {AttributeGroupSpec} other
143
143
  * @returns {boolean}
144
144
  */
145
145
  equals(other) {
@@ -220,4 +220,4 @@ export class VertexDataSpec {
220
220
  * @readonly
221
221
  * @type {boolean}
222
222
  */
223
- VertexDataSpec.prototype.isVertexDataSpec = true;
223
+ AttributeGroupSpec.prototype.isAttributeGroupSpec = true;
@@ -5,4 +5,8 @@ export class AttributeSpec {
5
5
  readonly type: BinaryDataType
6
6
  readonly itemSize: number
7
7
  readonly normalized: boolean
8
+
9
+ fromJSON(json: { name: string, type: BinaryDataType, itemSize: number, normalized: boolean })
10
+
11
+ static fromJSON(json: { name: string, type: BinaryDataType, itemSize: number, normalized: boolean }): AttributeSpec
8
12
  }
@@ -1,3 +1,2 @@
1
- export const PARTICULAR_PARTICLE_SPECIFICATION: VertexDataSpec;
2
- import { VertexDataSpec } from "../../../../geometry/VertexDataSpec.js";
1
+ export const PARTICULAR_PARTICLE_SPECIFICATION: any;
3
2
  //# sourceMappingURL=PARTICULAR_PARTICLE_SPECIFICATION.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"PARTICULAR_PARTICLE_SPECIFICATION.d.ts","sourceRoot":"","sources":["../../../../../../../../src/engine/graphics/particles/particular/engine/emitter/PARTICULAR_PARTICLE_SPECIFICATION.js"],"names":[],"mappings":"AAKA,+DAAsE;+BALvC,wCAAwC"}
1
+ {"version":3,"file":"PARTICULAR_PARTICLE_SPECIFICATION.d.ts","sourceRoot":"","sources":["../../../../../../../../src/engine/graphics/particles/particular/engine/emitter/PARTICULAR_PARTICLE_SPECIFICATION.js"],"names":[],"mappings":"AAKA,oDAA0E"}
@@ -1,9 +1,9 @@
1
- import { VertexDataSpec } from "../../../../geometry/VertexDataSpec.js";
2
- import { AttributeSpec } from "../../../../geometry/AttributeSpec.js";
3
1
  import { BinaryDataType } from "../../../../../../core/binary/type/BinaryDataType.js";
2
+ import { AttributeGroupSpec } from "../../../../geometry/AttributeGroupSpec.js";
3
+ import { AttributeSpec } from "../../../../geometry/AttributeSpec.js";
4
4
 
5
5
  //build particle spec
6
- export const PARTICULAR_PARTICLE_SPECIFICATION = new VertexDataSpec();
6
+ export const PARTICULAR_PARTICLE_SPECIFICATION = new AttributeGroupSpec();
7
7
 
8
8
  PARTICULAR_PARTICLE_SPECIFICATION.add(AttributeSpec.fromJSON({
9
9
  name: 'position',
@@ -1,10 +1,10 @@
1
1
  export class ParticlePool {
2
2
  /**
3
3
  *
4
- * @param {VertexDataSpec} spec
4
+ * @param {AttributeGroupSpec} spec
5
5
  * @constructor
6
6
  */
7
- constructor(spec: VertexDataSpec);
7
+ constructor(spec: AttributeGroupSpec);
8
8
  /**
9
9
  *
10
10
  * @type {BitSet}
@@ -36,9 +36,9 @@ export class ParticlePool {
36
36
  capacity: number;
37
37
  /**
38
38
  *
39
- * @type {VertexDataSpec}
39
+ * @type {AttributeGroupSpec}
40
40
  */
41
- spec: VertexDataSpec;
41
+ spec: AttributeGroupSpec;
42
42
  size(): number;
43
43
  /**
44
44
  *
@@ -1 +1 @@
1
- {"version":3,"file":"ParticlePool.d.ts","sourceRoot":"","sources":["../../../../../../../../src/engine/graphics/particles/particular/engine/emitter/ParticlePool.js"],"names":[],"mappings":"AAcA;IAoCI;;;;OAIG;IACH,kCAWC;IAnDD;;;OAGG;IACH,WAFU,MAAM,CAES;IAEzB;;;OAGG;IACH,YAFU,eAAe,EAAE,CAEX;IAEhB;;OAEG;IACH,cAAmC;IAEnC;;;OAGG;IACH,YAFU,MAAM,CAEC;IAEjB;;;OAGG;IACH,cAFU,MAAM,CAEG;IAEnB;;;OAGG;IACH,UAFU,MAAM,CAEF;IAUV;;;OAGG;IACH,qBAAgB;IAMpB,eAEC;IAED;;;OAGG;IACH,UAFa,MAAM,CAiBlB;IAED;;;OAGG;IACH,YAFa,OAAO,CAMnB;IAED;;;OAGG;IACH,cAFW,MAAM,QAIhB;IAED;;OAEG;IACH,gBA4CC;IAED,yBAsBC;IAED,eASC;IAED;;;;;OAKG;IACH,aAHW,MAAM,UACN,MAAM,QAgChB;IAED,cA+CC;IAED;;;OAGG;IACH,uBAFW,MAAM,QAYhB;IAED;;;OAGG;IACH,4BAFW,MAAM,QAWhB;IAED;;;OAGG;IACH,yBAFW,MAAM,QAiBhB;IAED;;;;;OAKG;IACH,8DAFa,MAAM,CAQlB;IAED;;;;;OAKG;IACH,qEAFW,MAAM,QAQhB;IAED;;;;;OAKG;IACH,sEAFW,MAAM,EAAE,QAWlB;IAED;;;;;;OAMG;IACH,kEAHW,MAAM,KACN,MAAM,QAWhB;IAED;;;;;OAKG;IACH,sEAFW,MAAM,EAAE,QAYlB;IAED;;;;;;;OAOG;IACH,kEAJW,MAAM,KACN,MAAM,KACN,MAAM,QAYhB;IAED;;;;;OAKG;IACH,sEAFW,MAAM,EAAE,QAalB;IAED;;;;;;;;OAQG;IACH,kEALW,MAAM,KACN,MAAM,KACN,MAAM,KACN,MAAM,QAahB;IAED;;;;;OAKG;IACH,2CAHW,MAAM,SACN,MAAM,EAAE,GAAC,YAAY,GAAC,UAAU,GAAC,WAAW,GAAC,SAAS,GAAC,UAAU,QA4B3E;IAED;;;;OAIG;IACH,+DAHW,MAAM,UACN,MAAM,EAAE,QAgBlB;IAED,gBAOC;CACJ;uBAzhBsB,yCAAyC;gCAFC,OAAO"}
1
+ {"version":3,"file":"ParticlePool.d.ts","sourceRoot":"","sources":["../../../../../../../../src/engine/graphics/particles/particular/engine/emitter/ParticlePool.js"],"names":[],"mappings":"AAcA;IAoCI;;;;OAIG;IACH,sCAWC;IAnDD;;;OAGG;IACH,WAFU,MAAM,CAES;IAEzB;;;OAGG;IACH,YAFU,eAAe,EAAE,CAEX;IAEhB;;OAEG;IACH,cAAmC;IAEnC;;;OAGG;IACH,YAFU,MAAM,CAEC;IAEjB;;;OAGG;IACH,cAFU,MAAM,CAEG;IAEnB;;;OAGG;IACH,UAFU,MAAM,CAEF;IAUV;;;OAGG;IACH,yBAAgB;IAMpB,eAEC;IAED;;;OAGG;IACH,UAFa,MAAM,CAiBlB;IAED;;;OAGG;IACH,YAFa,OAAO,CAMnB;IAED;;;OAGG;IACH,cAFW,MAAM,QAIhB;IAED;;OAEG;IACH,gBA4CC;IAED,yBAsBC;IAED,eASC;IAED;;;;;OAKG;IACH,aAHW,MAAM,UACN,MAAM,QAgChB;IAED,cA+CC;IAED;;;OAGG;IACH,uBAFW,MAAM,QAYhB;IAED;;;OAGG;IACH,4BAFW,MAAM,QAWhB;IAED;;;OAGG;IACH,yBAFW,MAAM,QAiBhB;IAED;;;;;OAKG;IACH,8DAFa,MAAM,CAQlB;IAED;;;;;OAKG;IACH,qEAFW,MAAM,QAQhB;IAED;;;;;OAKG;IACH,sEAFW,MAAM,EAAE,QAWlB;IAED;;;;;;OAMG;IACH,kEAHW,MAAM,KACN,MAAM,QAWhB;IAED;;;;;OAKG;IACH,sEAFW,MAAM,EAAE,QAYlB;IAED;;;;;;;OAOG;IACH,kEAJW,MAAM,KACN,MAAM,KACN,MAAM,QAYhB;IAED;;;;;OAKG;IACH,sEAFW,MAAM,EAAE,QAalB;IAED;;;;;;;;OAQG;IACH,kEALW,MAAM,KACN,MAAM,KACN,MAAM,KACN,MAAM,QAahB;IAED;;;;;OAKG;IACH,2CAHW,MAAM,SACN,MAAM,EAAE,GAAC,YAAY,GAAC,UAAU,GAAC,WAAW,GAAC,SAAS,GAAC,UAAU,QA4B3E;IAED;;;;OAIG;IACH,+DAHW,MAAM,UACN,MAAM,EAAE,QAgBlB;IAED,gBAOC;CACJ;uBAzhBsB,yCAAyC;gCAFC,OAAO"}
@@ -50,15 +50,15 @@ export class ParticlePool {
50
50
 
51
51
  /**
52
52
  *
53
- * @param {VertexDataSpec} spec
53
+ * @param {AttributeGroupSpec} spec
54
54
  * @constructor
55
55
  */
56
56
  constructor(spec) {
57
- assert.equal(spec.isVertexDataSpec, true, 'spec.VertexDataSpec !== true');
57
+ assert.equal(spec.isAttributeGroupSpec, true, 'spec.VertexDataSpec !== true');
58
58
 
59
59
  /**
60
60
  *
61
- * @type {VertexDataSpec}
61
+ * @type {AttributeGroupSpec}
62
62
  */
63
63
  this.spec = spec;
64
64
 
@@ -4,6 +4,5 @@ export const BILLBOARD_PARTICLE_ATTRIBUTE_SIZE: 2;
4
4
  export const BILLBOARD_PARTICLE_ATTRIBUTE_VELOCITY: 3;
5
5
  export const BILLBOARD_PARTICLE_ATTRIBUTE_COLOR: 5;
6
6
  export const BILLBOARD_PARTICLE_ATTRIBUTE_BLEND: 6;
7
- export const BILLBOARD_PARTICLE_SPECIFICATION: VertexDataSpec;
8
- import { VertexDataSpec } from "../../../../../geometry/VertexDataSpec.js";
7
+ export const BILLBOARD_PARTICLE_SPECIFICATION: any;
9
8
  //# sourceMappingURL=BILLBOARD_PARTICLE_SPECIFICATION.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"BILLBOARD_PARTICLE_SPECIFICATION.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/engine/graphics/particles/particular/engine/renderers/billboard/BILLBOARD_PARTICLE_SPECIFICATION.js"],"names":[],"mappings":"AAIA,sDAAuD;AACvD,gDAAiD;AACjD,kDAAmD;AACnD,sDAAuD;AACvD,mDAAoD;AACpD,mDAAoD;AAEpD,8DAAqE;+BAXtC,2CAA2C"}
1
+ {"version":3,"file":"BILLBOARD_PARTICLE_SPECIFICATION.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/engine/graphics/particles/particular/engine/renderers/billboard/BILLBOARD_PARTICLE_SPECIFICATION.js"],"names":[],"mappings":"AAIA,sDAAuD;AACvD,gDAAiD;AACjD,kDAAmD;AACnD,sDAAuD;AACvD,mDAAoD;AACpD,mDAAoD;AAEpD,mDAAyE"}
@@ -1,6 +1,6 @@
1
- import { VertexDataSpec } from "../../../../../geometry/VertexDataSpec.js";
2
- import { AttributeSpec } from "../../../../../geometry/AttributeSpec.js";
3
1
  import { BinaryDataType } from "../../../../../../../core/binary/type/BinaryDataType.js";
2
+ import { AttributeGroupSpec } from "../../../../../geometry/AttributeGroupSpec.js";
3
+ import { AttributeSpec } from "../../../../../geometry/AttributeSpec.js";
4
4
 
5
5
  export const BILLBOARD_PARTICLE_ATTRIBUTE_POSITION = 0;
6
6
  export const BILLBOARD_PARTICLE_ATTRIBUTE_UV = 1;
@@ -9,7 +9,7 @@ export const BILLBOARD_PARTICLE_ATTRIBUTE_VELOCITY = 3;
9
9
  export const BILLBOARD_PARTICLE_ATTRIBUTE_COLOR = 5;
10
10
  export const BILLBOARD_PARTICLE_ATTRIBUTE_BLEND = 6;
11
11
 
12
- export const BILLBOARD_PARTICLE_SPECIFICATION = new VertexDataSpec();
12
+ export const BILLBOARD_PARTICLE_SPECIFICATION = new AttributeGroupSpec();
13
13
 
14
14
  BILLBOARD_PARTICLE_SPECIFICATION.add(AttributeSpec.fromJSON({ name: 'position', itemSize: 3, type: BinaryDataType.Float32 }));
15
15
  BILLBOARD_PARTICLE_SPECIFICATION.add(AttributeSpec.fromJSON({
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  *
3
- * @deprecated use {@link VertexDataSpec} instead
3
+ * @deprecated use {@link AttributeGroupSpec} instead
4
4
  */
5
5
  export class ParticleSpecification {
6
6
  /**
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  *
3
- * @deprecated use {@link VertexDataSpec} instead
3
+ * @deprecated use {@link AttributeGroupSpec} instead
4
4
  */
5
5
  export class ParticleSpecification {
6
6
  /**
@@ -1,11 +1,11 @@
1
- export class TextureDescriptor extends ResourceDescriptor {
1
+ export class TextureResourceDescriptor extends ResourceDescriptor {
2
2
  static from({ height, width, format, channel_count, initial_state }: {
3
3
  height?: number;
4
4
  width?: number;
5
5
  format?: BinaryDataType;
6
6
  channel_count?: number;
7
7
  initial_state?: number;
8
- }): TextureDescriptor;
8
+ }): TextureResourceDescriptor;
9
9
  /**
10
10
  *
11
11
  * @type {number}
@@ -33,11 +33,11 @@ export class TextureDescriptor extends ResourceDescriptor {
33
33
  initial_state: number;
34
34
  /**
35
35
  *
36
- * @param {TextureDescriptor} other
36
+ * @param {TextureResourceDescriptor} other
37
37
  * @returns {boolean}
38
38
  */
39
- equals(other: TextureDescriptor): boolean;
39
+ equals(other: TextureResourceDescriptor): boolean;
40
40
  }
41
41
  import { ResourceDescriptor } from "./ResourceDescriptor.js";
42
42
  import { BinaryDataType } from "../../../../../core/binary/type/BinaryDataType.js";
43
- //# sourceMappingURL=TextureDescriptor.d.ts.map
43
+ //# sourceMappingURL=TextureResourceDescriptor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TextureResourceDescriptor.d.ts","sourceRoot":"","sources":["../../../../../../../src/engine/graphics/render/frame_graph/resource/TextureResourceDescriptor.js"],"names":[],"mappings":"AAMA;IAoEI;;;;;;kCAiBC;IAnFD;;;OAGG;IACH,QAFU,MAAM,CAEL;IACX;;;OAGG;IACH,OAFU,MAAM,CAEN;IAEV;;;OAGG;IACH,QAFU,cAAc,CAEM;IAE9B;;;OAGG;IACH,eAFU,MAAM,CAEE;IAElB;;;OAGG;IACH,eAFU,MAAM,CAE0B;IAe1C;;;;OAIG;IACH,cAHW,yBAAyB,GACvB,OAAO,CAkBnB;CAqBJ;mCAzFkC,yBAAyB;+BAH7B,mDAAmD"}
@@ -4,7 +4,7 @@ import { computeStringHash } from "../../../../../core/primitives/strings/comput
4
4
  import { ResourceDescriptor } from "./ResourceDescriptor.js";
5
5
  import { TextureInitialState } from "./TextureInitialState.js";
6
6
 
7
- export class TextureDescriptor extends ResourceDescriptor {
7
+ export class TextureResourceDescriptor extends ResourceDescriptor {
8
8
 
9
9
  /**
10
10
  *
@@ -50,7 +50,7 @@ export class TextureDescriptor extends ResourceDescriptor {
50
50
 
51
51
  /**
52
52
  *
53
- * @param {TextureDescriptor} other
53
+ * @param {TextureResourceDescriptor} other
54
54
  * @returns {boolean}
55
55
  */
56
56
  equals(other) {
@@ -80,7 +80,7 @@ export class TextureDescriptor extends ResourceDescriptor {
80
80
  initial_state = TextureInitialState.Clear
81
81
  }) {
82
82
 
83
- const r = new TextureDescriptor();
83
+ const r = new TextureResourceDescriptor();
84
84
 
85
85
  r.height = height;
86
86
  r.width = width;
@@ -1 +1 @@
1
- {"version":3,"file":"GBufferDrawPass.d.ts","sourceRoot":"","sources":["../../../../../../../../src/engine/graphics/render/frame_graph/sample/deferred/GBufferDrawPass.js"],"names":[],"mappings":"AAGA;IAQU,yBAEkC;IAPxC;;;;MAqBC;IAED,8DAEC;CACJ;2BAhC0B,qBAAqB"}
1
+ {"version":3,"file":"GBufferDrawPass.d.ts","sourceRoot":"","sources":["../../../../../../../../src/engine/graphics/render/frame_graph/sample/deferred/GBufferDrawPass.js"],"names":[],"mappings":"AAGA;IAOoD,yBAGhC;IAPhB;;;;MAqBC;IAED,8DAEC;CACJ;2BAhC0B,qBAAqB"}
@@ -1,5 +1,5 @@
1
1
  import { RenderPass } from "../../RenderPass.js";
2
- import { TextureDescriptor } from "../../resource/TextureDescriptor.js";
2
+ import { TextureResourceDescriptor } from "../../resource/TextureResourceDescriptor.js";
3
3
 
4
4
  export class GBufferDrawPass extends RenderPass {
5
5
  name = "Draw G-buffer";
@@ -7,16 +7,16 @@ export class GBufferDrawPass extends RenderPass {
7
7
  setup(builder, inputs) {
8
8
  // ignore inputs
9
9
 
10
- const out_albedo = new TextureDescriptor();
10
+ const out_albedo = new TextureResourceDescriptor();
11
11
  const res_albedo = builder.create("Albedo", out_albedo);
12
12
  builder.write(res_albedo);
13
13
 
14
- const out_normal = new TextureDescriptor();
14
+ const out_normal = new TextureResourceDescriptor();
15
15
  const res_normal = builder.create("Normal", out_normal);
16
16
  builder.write(res_normal);
17
17
 
18
18
 
19
- const out_depth = new TextureDescriptor();
19
+ const out_depth = new TextureResourceDescriptor();
20
20
  const res_position = builder.create("Position", out_depth);
21
21
  builder.write(res_position);
22
22
 
@@ -1,5 +1,5 @@
1
1
  import { RenderGraph } from "../../RenderGraph.js";
2
- import { TextureDescriptor } from "../../resource/TextureDescriptor.js";
2
+ import { TextureResourceDescriptor } from "../../resource/TextureResourceDescriptor.js";
3
3
  import { WebGLRenderContext } from "../../webgl/WebGLRenderContext.js";
4
4
  import { GBufferDrawPass } from "./GBufferDrawPass.js";
5
5
  import { LightingPass } from "./LightingPass.js";
@@ -7,7 +7,7 @@ import { LightingPass } from "./LightingPass.js";
7
7
 
8
8
  const graph = new RenderGraph();
9
9
 
10
- const back_buffer_id = graph.import_resource("Backbuffer", new TextureDescriptor(), "");
10
+ const back_buffer_id = graph.import_resource("Backbuffer", new TextureResourceDescriptor(), "");
11
11
 
12
12
 
13
13
  const p_g = new GBufferDrawPass();
@@ -1 +1 @@
1
- {"version":3,"file":"ColorDepthPass.d.ts","sourceRoot":"","sources":["../../../../../../../../src/engine/graphics/render/frame_graph/sample/meep-v1/ColorDepthPass.js"],"names":[],"mappings":"AAKA;IAGwB,yBAC0C;IAH9D,oBAAoC;IAEpC;;;MAuBC;IAED,8DAGC;CACJ;2BAnC0B,qBAAqB;oBAD5B,wCAAwC"}
1
+ {"version":3,"file":"ColorDepthPass.d.ts","sourceRoot":"","sources":["../../../../../../../../src/engine/graphics/render/frame_graph/sample/meep-v1/ColorDepthPass.js"],"names":[],"mappings":"AAKA;IAGQ,yBAC0C;IAH9C,oBAAoC;IAEpC;;;MAuBC;IAED,8DAGC;CACJ;2BAnC0B,qBAAqB;oBAD5B,wCAAwC"}
@@ -1,13 +1,13 @@
1
1
  import { BinaryDataType } from "../../../../../../core/binary/type/BinaryDataType.js";
2
2
  import Vector2 from "../../../../../../core/geom/Vector2.js";
3
3
  import { RenderPass } from "../../RenderPass.js";
4
- import { TextureDescriptor } from "../../resource/TextureDescriptor.js";
4
+ import { TextureResourceDescriptor } from "../../resource/TextureResourceDescriptor.js";
5
5
 
6
6
  export class ColorDepthPass extends RenderPass {
7
7
  resolution = new Vector2(1024, 724);
8
8
 
9
9
  setup(builder, inputs) {
10
- const color = builder.create("Color", TextureDescriptor.from({
10
+ const color = builder.create("Color", TextureResourceDescriptor.from({
11
11
  width: this.resolution.x,
12
12
  height: this.resolution.y,
13
13
  format: BinaryDataType.Uint8,
@@ -16,7 +16,7 @@ export class ColorDepthPass extends RenderPass {
16
16
 
17
17
  builder.write(color);
18
18
 
19
- const depth = builder.create("Depth", TextureDescriptor.from({
19
+ const depth = builder.create("Depth", TextureResourceDescriptor.from({
20
20
  width: this.resolution.x,
21
21
  height: this.resolution.y,
22
22
  format: BinaryDataType.Float32,
@@ -15,8 +15,8 @@ import {
15
15
  import {
16
16
  v3_computeCatmullRomSplineUniformDistance
17
17
  } from "../../../../core/math/spline/v3_computeCatmullRomSplineUniformDistance.js";
18
+ import { AttributeGroupSpec } from "../../../graphics/geometry/AttributeGroupSpec.js";
18
19
  import { AttributeSpec } from "../../../graphics/geometry/AttributeSpec.js";
19
- import { VertexDataSpec } from "../../../graphics/geometry/VertexDataSpec.js";
20
20
  import { InterpolationType } from "./InterpolationType.js";
21
21
 
22
22
  const scratch_v3_a = new Float32Array(3);
@@ -62,10 +62,10 @@ class Path {
62
62
  constructor() {
63
63
  /**
64
64
  *
65
- * @type {VertexDataSpec}
65
+ * @type {AttributeGroupSpec}
66
66
  * @private
67
67
  */
68
- this.__spec = VertexDataSpec.from(
68
+ this.__spec = AttributeGroupSpec.from(
69
69
  AttributeSpec.fromJSON({
70
70
  name: 'position',
71
71
  type: BinaryDataType.Float32,
@@ -1 +0,0 @@
1
- {"version":3,"file":"VertexDataSpec.d.ts","sourceRoot":"","sources":["../../../../../src/engine/graphics/geometry/VertexDataSpec.js"],"names":[],"mappings":"AAYA;;;GAGG;AACH;IAeI;;;;OAIG;IACH,2BAHW,aAAa,GACX,cAAc,CAQ1B;IAxBD;;;OAGG;IACH,YAFU,aAAa,EAAE,CAET;IAsBhB;;;;OAIG;IACH,yBAHW,MAAM,GACL,aAAa,GAAC,SAAS,CAgBlC;IAED;;;OAGG;IACH,8BAFW,MAAM,GADJ,MAAM,CAiBlB;IAED;;;OAGG;IACH,oBAFW,aAAa,EAAE,QAOzB;IAED;;;;OAIG;IACH,eAHW,aAAa,GACZ,cAAc,CAkBzB;IAED;;;OAGG;IACH,0BAFW,aAAa,EAAE,QAQzB;IAED,cAMC;IAED;;;;OAIG;IACH,cAHW,cAAc,GACZ,OAAO,CAQnB;IAED,sBASC;IAED,eAMC;IAED;;MAIC;IAED;;aAkBC;IAED;;;OAGG;IACH,eAFa,MAAM,CAelB;IAIL;;;OAGG;IACH,2BAFU,OAAO,CAEwB;;CAPxC;8BAnN6B,oBAAoB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"TextureDescriptor.d.ts","sourceRoot":"","sources":["../../../../../../../src/engine/graphics/render/frame_graph/resource/TextureDescriptor.js"],"names":[],"mappings":"AAMA;IAoEI;;;;;;0BAiBC;IAnFD;;;OAGG;IACH,QAFU,MAAM,CAEL;IACX;;;OAGG;IACH,OAFU,MAAM,CAEN;IAEV;;;OAGG;IACH,QAFU,cAAc,CAEM;IAE9B;;;OAGG;IACH,eAFU,MAAM,CAEE;IAElB;;;OAGG;IACH,eAFU,MAAM,CAE0B;IAe1C;;;;OAIG;IACH,cAHW,iBAAiB,GACf,OAAO,CAkBnB;CAqBJ;mCAzFkC,yBAAyB;+BAH7B,mDAAmD"}