@woosh/meep-engine 2.111.14 → 2.111.15

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.
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.111.15",
9
9
  "main": "build/meep.module.js",
10
10
  "module": "build/meep.module.js",
11
11
  "exports": {
@@ -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,
@@ -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"}