@forgeax/engine-render 0.1.19 → 0.1.20

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 (174) hide show
  1. package/dist/.tsbuildinfo +1 -1
  2. package/dist/assembly/factory.d.ts +16 -5
  3. package/dist/assembly/factory.d.ts.map +1 -1
  4. package/dist/{chunk-RJRUS55L.mjs → chunk-4XINDLAY.mjs} +267 -186
  5. package/dist/chunk-4XINDLAY.mjs.map +1 -0
  6. package/dist/{chunk-YTQ5C7YQ.mjs → chunk-CDTWTHZR.mjs} +176 -8
  7. package/dist/chunk-CDTWTHZR.mjs.map +1 -0
  8. package/dist/{chunk-IPXCABEP.mjs → chunk-M2MP4ZOU.mjs} +2 -2
  9. package/dist/chunk-M2MP4ZOU.mjs.map +1 -0
  10. package/dist/{chunk-LOSO4CTV.mjs → chunk-TBQJOK2L.mjs} +67 -3
  11. package/dist/chunk-TBQJOK2L.mjs.map +1 -0
  12. package/dist/components/light-helpers.d.ts.map +1 -1
  13. package/dist/components/spot-light.d.ts +12 -0
  14. package/dist/components/spot-light.d.ts.map +1 -1
  15. package/dist/construct-renderer.mjs +2281 -164
  16. package/dist/construct-renderer.mjs.map +1 -1
  17. package/dist/device/gpu-residency.d.ts +19 -2
  18. package/dist/device/gpu-residency.d.ts.map +1 -1
  19. package/dist/errors/render.d.ts +69 -1
  20. package/dist/errors/render.d.ts.map +1 -1
  21. package/dist/gpu-usage.d.ts +2 -0
  22. package/dist/gpu-usage.d.ts.map +1 -1
  23. package/dist/index.d.ts +7 -1
  24. package/dist/index.d.ts.map +1 -1
  25. package/dist/index.mjs +3 -3
  26. package/dist/internal.mjs +1 -1
  27. package/dist/light-buffer-layout.d.ts +20 -12
  28. package/dist/light-buffer-layout.d.ts.map +1 -1
  29. package/dist/pbr-pipeline.d.ts +6 -3
  30. package/dist/pbr-pipeline.d.ts.map +1 -1
  31. package/dist/pipeline/standard-forward-lane.d.ts.map +1 -1
  32. package/dist/pipeline/standard-pipeline.d.ts.map +1 -1
  33. package/dist/pipeline/standard-profile.d.ts +13 -0
  34. package/dist/pipeline/standard-profile.d.ts.map +1 -1
  35. package/dist/record/frame-lighting.d.ts +2 -0
  36. package/dist/record/frame-lighting.d.ts.map +1 -1
  37. package/dist/record/frame-snapshot.d.ts +37 -1
  38. package/dist/record/frame-snapshot.d.ts.map +1 -1
  39. package/dist/record/frame-targets.d.ts.map +1 -1
  40. package/dist/record/frame.d.ts +3 -2
  41. package/dist/record/frame.d.ts.map +1 -1
  42. package/dist/record/gpu-timing.d.ts +32 -0
  43. package/dist/record/gpu-timing.d.ts.map +1 -0
  44. package/dist/record/main-pass-material.d.ts +1 -1
  45. package/dist/record/main-pass-material.d.ts.map +1 -1
  46. package/dist/record/render-context.d.ts +5 -1
  47. package/dist/record/render-context.d.ts.map +1 -1
  48. package/dist/record/shadow-pass.d.ts.map +1 -1
  49. package/dist/record/typed-frame-graph.d.ts +11 -3
  50. package/dist/record/typed-frame-graph.d.ts.map +1 -1
  51. package/dist/render-contract.d.ts +66 -1
  52. package/dist/render-contract.d.ts.map +1 -1
  53. package/dist/render-data.d.ts +10 -6
  54. package/dist/render-data.d.ts.map +1 -1
  55. package/dist/render-pipeline.d.ts +36 -0
  56. package/dist/render-pipeline.d.ts.map +1 -1
  57. package/dist/render-system-extract.d.ts +55 -3
  58. package/dist/render-system-extract.d.ts.map +1 -1
  59. package/dist/render-system.d.ts +7 -1
  60. package/dist/render-system.d.ts.map +1 -1
  61. package/dist/renderer-inspect.d.ts +29 -0
  62. package/dist/renderer-inspect.d.ts.map +1 -0
  63. package/dist/scene/render-scene.d.ts.map +1 -1
  64. package/dist/temporal/frame.d.ts +44 -0
  65. package/dist/temporal/frame.d.ts.map +1 -0
  66. package/dist/temporal/index.mjs +3 -3
  67. package/dist/typed-render-graph-primitives.d.ts +6 -1
  68. package/dist/typed-render-graph-primitives.d.ts.map +1 -1
  69. package/dist/typed-shadow-atlas.d.ts +10 -0
  70. package/dist/typed-shadow-atlas.d.ts.map +1 -0
  71. package/dist/typed-shadow-passes.d.ts.map +1 -1
  72. package/dist/volume/capability.d.ts +57 -0
  73. package/dist/volume/capability.d.ts.map +1 -0
  74. package/dist/volume/component.d.ts +61 -0
  75. package/dist/volume/component.d.ts.map +1 -0
  76. package/dist/volume/extract.d.ts +11 -0
  77. package/dist/volume/extract.d.ts.map +1 -0
  78. package/dist/volume/inspection.d.ts +38 -0
  79. package/dist/volume/inspection.d.ts.map +1 -0
  80. package/dist/volume/passes.d.ts +38 -0
  81. package/dist/volume/passes.d.ts.map +1 -0
  82. package/dist/volume/recovery.d.ts +38 -0
  83. package/dist/volume/recovery.d.ts.map +1 -0
  84. package/dist/volume/resources.d.ts +57 -0
  85. package/dist/volume/resources.d.ts.map +1 -0
  86. package/dist/volume/temporal.d.ts +35 -0
  87. package/dist/volume/temporal.d.ts.map +1 -0
  88. package/package.json +20 -20
  89. package/src/__tests__/ktx2-basis-gpu-consumer.dawn.test.ts +14 -14
  90. package/src/__tests__/mesh-buffer-usage-surface.unit.test.ts +1 -1
  91. package/src/__tests__/render-error-code-owner.test-d.ts +5 -0
  92. package/src/__tests__/renderer-factory-material-contract.unit.test.ts +28 -0
  93. package/src/__tests__/renderer-frame-transaction.integration.test.ts +1 -1
  94. package/src/__tests__/skinned-shadow-caster.test.ts +21 -0
  95. package/src/__tests__/standard-profile-oracle.unit.test.ts +7 -5
  96. package/src/__tests__/volume-optics-oracle.unit.test.ts +85 -0
  97. package/src/__tests__/volumetric-fog-budget-recovery.integration.test.ts +655 -0
  98. package/src/__tests__/volumetric-fog-component.unit.test.ts +71 -0
  99. package/src/__tests__/volumetric-fog-composite-stage-readback.dawn.test.ts +376 -0
  100. package/src/__tests__/volumetric-fog-errors.unit.test.ts +51 -0
  101. package/src/__tests__/volumetric-fog-inspection.unit.test.ts +77 -0
  102. package/src/__tests__/volumetric-fog-light-capability.unit.test.ts +19 -0
  103. package/src/__tests__/volumetric-fog-light-consumers.integration.test.ts +18 -0
  104. package/src/__tests__/volumetric-fog-light-errors.unit.test.ts +17 -0
  105. package/src/__tests__/volumetric-fog-light-topology.unit.test.ts +21 -0
  106. package/src/__tests__/volumetric-fog-light-transaction.integration.test.ts +53 -0
  107. package/src/__tests__/volumetric-fog-m9-watcher.integration.test.ts +27 -0
  108. package/src/__tests__/volumetric-fog-point-light-owner.integration.test.ts +44 -0
  109. package/src/__tests__/volumetric-fog-point-spot-accumulation.integration.test.ts +49 -0
  110. package/src/__tests__/volumetric-fog-point-spot-contract.unit.test.ts +28 -0
  111. package/src/__tests__/volumetric-fog-point-spot-lkg.integration.test.ts +65 -0
  112. package/src/__tests__/volumetric-fog-point-spot-selection.integration.test.ts +49 -0
  113. package/src/__tests__/volumetric-fog-point-spot-temporal.unit.test.ts +55 -0
  114. package/src/__tests__/volumetric-fog-projector-contract.unit.test.ts +22 -0
  115. package/src/__tests__/volumetric-fog-projector-inspection.unit.test.ts +12 -0
  116. package/src/__tests__/volumetric-fog-projector-surface-volume.integration.test.ts +11 -0
  117. package/src/__tests__/volumetric-fog-projector-transaction.integration.test.ts +26 -0
  118. package/src/__tests__/volumetric-fog-recovery.integration.test.ts +47 -0
  119. package/src/__tests__/volumetric-fog-selected-light-resolution.integration.test.ts +63 -0
  120. package/src/__tests__/volumetric-fog-spot-closure.integration.test.ts +26 -0
  121. package/src/__tests__/volumetric-fog-spot-contract.test-d.ts +21 -0
  122. package/src/__tests__/volumetric-fog-spot-contract.unit.test.ts +27 -0
  123. package/src/__tests__/volumetric-fog-spot-frame-optics.integration.test.ts +14 -0
  124. package/src/__tests__/volumetric-fog-spot-optics.integration.test.ts +29 -0
  125. package/src/__tests__/volumetric-fog-stage-readback.dawn.test.ts +550 -0
  126. package/src/__tests__/volumetric-fog-temporal-selected-light.unit.test.ts +33 -0
  127. package/src/__tests__/volumetric-fog-temporal.unit.test.ts +45 -0
  128. package/src/__tests__/volumetric-fog-topology.unit.test.ts +237 -0
  129. package/src/__tests__/volumetric-fog-transparent.integration.test.ts +27 -0
  130. package/src/assembly/factory.ts +271 -15
  131. package/src/components/light-helpers.ts +4 -0
  132. package/src/components/spot-light.ts +22 -3
  133. package/src/device/gpu-residency.ts +168 -58
  134. package/src/errors/render.ts +119 -1
  135. package/src/gpu-usage.ts +2 -0
  136. package/src/index.ts +38 -1
  137. package/src/light-buffer-layout.ts +59 -26
  138. package/src/pbr-pipeline.ts +33 -10
  139. package/src/pipeline/standard-forward-lane.ts +20 -0
  140. package/src/pipeline/standard-pipeline.ts +20 -0
  141. package/src/pipeline/standard-profile.ts +23 -0
  142. package/src/record/frame-lighting.ts +103 -89
  143. package/src/record/frame-snapshot.ts +41 -1
  144. package/src/record/frame-targets.ts +6 -2
  145. package/src/record/frame.ts +908 -5
  146. package/src/record/gpu-timing.ts +224 -0
  147. package/src/record/main-pass-material.ts +6 -2
  148. package/src/record/render-context.ts +5 -0
  149. package/src/record/shadow-pass.ts +87 -38
  150. package/src/record/typed-frame-graph.ts +143 -8
  151. package/src/render-contract.ts +72 -0
  152. package/src/render-data.ts +50 -22
  153. package/src/render-pipeline.ts +44 -0
  154. package/src/render-system-extract.ts +329 -3
  155. package/src/render-system.ts +79 -0
  156. package/src/renderer-inspect.ts +66 -0
  157. package/src/scene/render-scene.ts +2 -0
  158. package/src/temporal/frame.ts +128 -0
  159. package/src/transmission/__tests__/standard-transmission.dawn.test.ts +2 -3
  160. package/src/typed-render-graph-primitives.ts +32 -2
  161. package/src/typed-shadow-atlas.ts +17 -0
  162. package/src/typed-shadow-passes.ts +6 -5
  163. package/src/volume/capability.ts +173 -0
  164. package/src/volume/component.ts +110 -0
  165. package/src/volume/extract.ts +21 -0
  166. package/src/volume/inspection.ts +78 -0
  167. package/src/volume/passes.ts +680 -0
  168. package/src/volume/recovery.ts +86 -0
  169. package/src/volume/resources.ts +236 -0
  170. package/src/volume/temporal.ts +89 -0
  171. package/dist/chunk-IPXCABEP.mjs.map +0 -1
  172. package/dist/chunk-LOSO4CTV.mjs.map +0 -1
  173. package/dist/chunk-RJRUS55L.mjs.map +0 -1
  174. package/dist/chunk-YTQ5C7YQ.mjs.map +0 -1
@@ -60,6 +60,7 @@ import {
60
60
  type AssetError,
61
61
  countExtraUvSets,
62
62
  type DecodedImage,
63
+ deriveTextureLayout,
63
64
  type EquirectAsset,
64
65
  type Handle,
65
66
  handleSlot,
@@ -72,6 +73,7 @@ import {
72
73
  type SamplerAsset,
73
74
  type Submesh,
74
75
  type TextureAsset,
76
+ type TextureShape,
75
77
  type MeshAsset as TypesMeshAsset,
76
78
  toShared,
77
79
  } from '@forgeax/engine-types';
@@ -98,7 +100,6 @@ import {
98
100
  import type { RhiErrorListenerRegistry } from '../lifecycle';
99
101
  import {
100
102
  type CubeRenderData,
101
- deriveMipUploadLayout,
102
103
  deriveRenderDataCubemap,
103
104
  deriveRenderDataMesh,
104
105
  deriveRenderDataTexture,
@@ -281,10 +282,25 @@ type RegisterCube = (
281
282
  // not destroyable on their own; their lifetime is bound to the parent
282
283
  // GpuTexture, which the wrapper owns. destroyAll() walks the GpuResource
283
284
  // fields and forwards .destroy() to the RHI shim.
284
- interface TextureGpuEntry {
285
+ export interface TextureResidencyReceipt {
286
+ readonly shape: TextureShape;
287
+ readonly format: GPUTextureFormat;
288
+ readonly extent: {
289
+ readonly width: number;
290
+ readonly height: number;
291
+ readonly depthOrArrayLayers: number;
292
+ };
293
+ readonly bytes: number;
294
+ readonly view: '2d' | '2d-array' | '3d';
295
+ readonly generation: number;
296
+ readonly deviceEpoch: number;
297
+ }
298
+
299
+ export interface TextureGpuEntry {
285
300
  readonly texture: GpuTexture;
286
301
  /** Opaque RHI view handle; lifetime is bound to the parent texture. */
287
302
  readonly view: TextureView;
303
+ readonly receipt: TextureResidencyReceipt;
288
304
  }
289
305
 
290
306
  // feat-20260630-equirect-kind-internalized-ibl-declarative-skyligh M2 / w11
@@ -388,6 +404,8 @@ export class GpuResidencyCache {
388
404
  // Hardware-probe caps injected at `configureGpuDevice`; guards the HDR cubemap
389
405
  // path (_uploadCubemapFromEquirect) when `rgba16floatRenderable` is false.
390
406
  private caps: RhiCaps | undefined = undefined;
407
+ private deviceEpoch = 0;
408
+ private textureGeneration = 0;
391
409
 
392
410
  private readonly textureGpuHandles: Map<string | number, TextureGpuEntry> = new Map();
393
411
  private readonly samplerGpuHandles: Map<string | number, Sampler> = new Map();
@@ -432,6 +450,12 @@ export class GpuResidencyCache {
432
450
  registerCube: RegisterCube,
433
451
  caps: RhiCaps,
434
452
  ): void {
453
+ for (const entry of this.textureGpuHandles.values()) {
454
+ if (!entry.texture.isDestroyed) entry.texture.destroy();
455
+ }
456
+ if (this.textureGpuHandles.size > 0) this.materialResourceEpoch += 1;
457
+ this.textureGpuHandles.clear();
458
+ this.deviceEpoch += 1;
435
459
  this.meshResidencyEpoch += 1;
436
460
  this.gpuDevice = device;
437
461
  this.asyncCreateShaderModule = asyncCreateShaderModule;
@@ -997,7 +1021,7 @@ export class GpuResidencyCache {
997
1021
  const cacheKey = this.worldKey(handleSlot(handle), worldId);
998
1022
  if (gpuTexture === undefined) return ok(undefined);
999
1023
 
1000
- if (!projected.value.compressed && decoded.mipmap === true && levels > 1) {
1024
+ if (!projected.value.compressed && tex.mips.kind === 'generate' && levels > 1) {
1001
1025
  const factory = this.asyncCreateShaderModule;
1002
1026
  if (factory === undefined) {
1003
1027
  return err(
@@ -1020,8 +1044,8 @@ export class GpuResidencyCache {
1020
1044
  }
1021
1045
  const blitRes = blitMipmapsSync(device, gpuTexture, {
1022
1046
  format: tex.format,
1023
- width: tex.width,
1024
- height: tex.height,
1047
+ width: tex.shape.extent.width,
1048
+ height: tex.shape.extent.height,
1025
1049
  levels,
1026
1050
  });
1027
1051
  if (!blitRes.ok) return blitRes as Result<void, RhiError>;
@@ -1029,13 +1053,14 @@ export class GpuResidencyCache {
1029
1053
 
1030
1054
  const viewRes = device.createTextureView(gpuTexture, {
1031
1055
  label: `texture-view-${cacheKey}`,
1032
- dimension: '2d',
1056
+ dimension: projected.value.shape.viewDimension,
1033
1057
  });
1034
1058
  if (!viewRes.ok) return viewRes;
1035
1059
  const previous = this.textureGpuHandles.get(cacheKey);
1036
- const next = {
1060
+ const next: TextureGpuEntry = {
1037
1061
  texture: this.wrapTex(gpuTexture),
1038
1062
  view: viewRes.value,
1063
+ receipt: this.textureReceipt(pod, projected.value),
1039
1064
  };
1040
1065
  this.textureGpuHandles.set(cacheKey, next);
1041
1066
  this.materialResourceEpoch += 1;
@@ -1077,11 +1102,11 @@ export class GpuResidencyCache {
1077
1102
  const { tex, levels, gpuTexture } = prepared.value;
1078
1103
  const cacheKey = this.worldKey(handleSlot(handle), worldId);
1079
1104
 
1080
- if (!renderData.compressed && decoded.mipmap === true && levels > 1) {
1105
+ if (!renderData.compressed && tex.mips.kind === 'generate' && levels > 1) {
1081
1106
  const blitRes = blitMipmapsSync(device, gpuTexture, {
1082
1107
  format: tex.format,
1083
- width: tex.width,
1084
- height: tex.height,
1108
+ width: tex.shape.extent.width,
1109
+ height: tex.shape.extent.height,
1085
1110
  levels,
1086
1111
  });
1087
1112
  if (!blitRes.ok) return blitRes as Result<TextureGpuEntry, RhiError>;
@@ -1089,10 +1114,14 @@ export class GpuResidencyCache {
1089
1114
 
1090
1115
  const viewRes = device.createTextureView(gpuTexture, {
1091
1116
  label: `texture-view-${cacheKey}`,
1092
- dimension: '2d',
1117
+ dimension: renderData.shape.viewDimension,
1093
1118
  });
1094
1119
  if (!viewRes.ok) return viewRes;
1095
- const entry: TextureGpuEntry = { texture: this.wrapTex(gpuTexture), view: viewRes.value };
1120
+ const entry: TextureGpuEntry = {
1121
+ texture: this.wrapTex(gpuTexture),
1122
+ view: viewRes.value,
1123
+ receipt: this.textureReceipt(pod, renderData),
1124
+ };
1096
1125
  const previous = this.textureGpuHandles.get(cacheKey);
1097
1126
  this.textureGpuHandles.set(cacheKey, entry);
1098
1127
  this.materialResourceEpoch += 1;
@@ -1106,6 +1135,25 @@ export class GpuResidencyCache {
1106
1135
  return ok(entry);
1107
1136
  }
1108
1137
 
1138
+ private textureReceipt(
1139
+ pod: TextureAsset,
1140
+ renderData: TextureRenderData,
1141
+ ): TextureResidencyReceipt {
1142
+ return {
1143
+ shape: pod.shape,
1144
+ format: renderData.format,
1145
+ extent: {
1146
+ width: renderData.physicalExtent.width,
1147
+ height: renderData.physicalExtent.height,
1148
+ depthOrArrayLayers: renderData.depthOrArrayLayers,
1149
+ },
1150
+ bytes: pod.data.byteLength,
1151
+ view: renderData.shape.viewDimension,
1152
+ generation: ++this.textureGeneration,
1153
+ deviceEpoch: this.deviceEpoch,
1154
+ };
1155
+ }
1156
+
1109
1157
  /**
1110
1158
  * Shared texture-upload prelude: format / colorSpace consistency assertion,
1111
1159
  * GPU texture allocation + writeTexture. Returns `gpuTexture: undefined`
@@ -1155,13 +1203,21 @@ export class GpuResidencyCache {
1155
1203
  // upload before allocating a handle; binding a texture that the backend
1156
1204
  // accepted syntactically but cannot use later surfaces only as a generic
1157
1205
  // invalid-bind-group submit error.
1158
- const maxDimension = device.limits.maxTextureDimension2D;
1159
- if (tex.width > maxDimension || tex.height > maxDimension) {
1206
+ const maxDimension =
1207
+ tex.shape.viewDimension === '3d'
1208
+ ? device.limits.maxTextureDimension3D
1209
+ : device.limits.maxTextureDimension2D;
1210
+ const width = tex.shape.extent.width;
1211
+ const height = tex.shape.extent.height;
1212
+ const layers = renderData.depthOrArrayLayers;
1213
+ const exceedsLayerLimit =
1214
+ tex.shape.viewDimension === '2d-array' && layers > device.limits.maxTextureArrayLayers;
1215
+ if (width > maxDimension || height > maxDimension || exceedsLayerLimit) {
1160
1216
  return err(
1161
1217
  makeImageError({
1162
1218
  code: 'image-dimension-out-of-bounds',
1163
- requested: { width: tex.width, height: tex.height },
1164
- limit: maxDimension,
1219
+ requested: { width, height },
1220
+ limit: exceedsLayerLimit ? device.limits.maxTextureArrayLayers : maxDimension,
1165
1221
  }),
1166
1222
  );
1167
1223
  }
@@ -1171,11 +1227,11 @@ export class GpuResidencyCache {
1171
1227
  size: {
1172
1228
  width: renderData.physicalExtent.width,
1173
1229
  height: renderData.physicalExtent.height,
1174
- depthOrArrayLayers: 1,
1230
+ depthOrArrayLayers: renderData.depthOrArrayLayers,
1175
1231
  },
1176
1232
  mipLevelCount: levels,
1177
1233
  sampleCount: 1,
1178
- dimension: '2d',
1234
+ dimension: tex.shape.viewDimension === '3d' ? '3d' : '2d',
1179
1235
  format: renderData.format,
1180
1236
  usage: renderData.usage,
1181
1237
  viewFormats: [],
@@ -1193,28 +1249,77 @@ export class GpuResidencyCache {
1193
1249
  // block math). Full-subresource copies retain their logical size, including
1194
1250
  // non-block-aligned dimensions. queue.writeTexture avoids the 256 B
1195
1251
  // copyBufferToTexture alignment trap.
1196
- const layout = deriveMipUploadLayout(renderData.format, tex.width, tex.height, levels);
1197
- for (const lvl of layout) {
1198
- const slice = decoded.bytes.subarray(lvl.byteOffset, lvl.byteOffset + lvl.byteLength);
1199
- const writeRes = queue.writeTexture(
1200
- { texture: gpuTexture, mipLevel: lvl.level, origin: { x: 0, y: 0, z: 0 } },
1201
- slice,
1202
- { offset: 0, bytesPerRow: lvl.bytesPerRow, rowsPerImage: lvl.rowsPerImage },
1203
- { width: lvl.copyWidth, height: lvl.copyHeight, depthOrArrayLayers: 1 },
1252
+ const layout = deriveTextureLayout({
1253
+ shape: tex.shape,
1254
+ format: renderData.format,
1255
+ mips: tex.mips,
1256
+ });
1257
+ if (!layout.ok) {
1258
+ return err(
1259
+ makeAssetError({
1260
+ code: 'invalid-source-format',
1261
+ expected: layout.error.expected,
1262
+ hint: layout.error.hint,
1263
+ }),
1204
1264
  );
1205
- if (!writeRes.ok) return writeRes;
1265
+ }
1266
+ for (const level of layout.value.levels) {
1267
+ for (let image = 0; image < level.imagesPerMip; image++) {
1268
+ const imageBytes = level.bytesPerRow * level.rowsPerImage;
1269
+ const offset = level.byteOffset + image * imageBytes;
1270
+ const slice = decoded.bytes.subarray(offset, offset + imageBytes);
1271
+ const writeRes = queue.writeTexture(
1272
+ {
1273
+ texture: gpuTexture,
1274
+ mipLevel: level.level,
1275
+ origin: { x: 0, y: 0, z: image },
1276
+ },
1277
+ slice,
1278
+ { offset: 0, bytesPerRow: level.bytesPerRow, rowsPerImage: level.rowsPerImage },
1279
+ {
1280
+ width: level.physicalWidth,
1281
+ height: level.physicalHeight,
1282
+ depthOrArrayLayers: 1,
1283
+ },
1284
+ );
1285
+ if (!writeRes.ok) return writeRes;
1286
+ }
1206
1287
  }
1207
1288
  return ok({ id, tex, levels, gpuTexture });
1208
1289
  }
1209
1290
 
1210
1291
  // Uncompressed base-mip write; higher mips (when mipmap) are GPU-generated by
1211
1292
  // the caller's blit pass. rowsPerImage is the pixel height for linear RGBA.
1212
- const bytesPerRow = renderData.bytesPerRow;
1293
+ const textureLayout = deriveTextureLayout({
1294
+ shape: tex.shape,
1295
+ format: renderData.format,
1296
+ mips: tex.mips,
1297
+ });
1298
+ if (!textureLayout.ok) {
1299
+ return err(
1300
+ makeAssetError({
1301
+ code: 'invalid-source-format',
1302
+ expected: textureLayout.error.expected,
1303
+ hint: textureLayout.error.hint,
1304
+ }),
1305
+ );
1306
+ }
1307
+ const baseLevel = textureLayout.value.levels[0];
1308
+ if (baseLevel === undefined) {
1309
+ return err(
1310
+ makeAssetError({
1311
+ code: 'invalid-source-format',
1312
+ expected: 'texture layout contains a base mip level',
1313
+ hint: ASSET_ERROR_HINTS['invalid-source-format'],
1314
+ }),
1315
+ );
1316
+ }
1317
+ const bytesPerRow = baseLevel.bytesPerRow;
1213
1318
  const writeTextureRes = queue.writeTexture(
1214
1319
  { texture: gpuTexture, mipLevel: 0, origin: { x: 0, y: 0, z: 0 } },
1215
1320
  decoded.bytes,
1216
- { offset: 0, bytesPerRow, rowsPerImage: tex.height },
1217
- { width: tex.width, height: tex.height, depthOrArrayLayers: 1 },
1321
+ { offset: 0, bytesPerRow, rowsPerImage: height },
1322
+ { width, height, depthOrArrayLayers: renderData.depthOrArrayLayers },
1218
1323
  );
1219
1324
  if (!writeTextureRes.ok) return writeTextureRes;
1220
1325
 
@@ -1333,14 +1438,21 @@ export class GpuResidencyCache {
1333
1438
  // / format / data / colorSpace) but has no CPU mip chain, so the derived
1334
1439
  // texture view declares `mipmap:false` (the IBL prefilter mip chain is a
1335
1440
  // GPU-side pass, not a CPU-authored level set).
1441
+ const sourceData =
1442
+ sourcePod.data instanceof Uint8ClampedArray
1443
+ ? new Uint8Array(
1444
+ sourcePod.data.buffer,
1445
+ sourcePod.data.byteOffset,
1446
+ sourcePod.data.byteLength,
1447
+ )
1448
+ : sourcePod.data;
1336
1449
  const sourceTex: TextureAsset = {
1337
1450
  kind: 'texture',
1338
- width: sourcePod.width,
1339
- height: sourcePod.height,
1451
+ shape: { viewDimension: '2d', extent: { width: sourcePod.width, height: sourcePod.height } },
1340
1452
  format: sourcePod.format,
1341
- data: sourcePod.data,
1453
+ data: sourceData,
1342
1454
  colorSpace: sourcePod.colorSpace,
1343
- mipmap: false,
1455
+ mips: { kind: 'none' },
1344
1456
  };
1345
1457
 
1346
1458
  // Project the equirect source POD into the cubemap descriptor (D-5): the
@@ -1365,20 +1477,11 @@ export class GpuResidencyCache {
1365
1477
  const tex: TextureAsset = projected.needsHalfConversion
1366
1478
  ? {
1367
1479
  kind: 'texture',
1368
- width: sourceTex.width,
1369
- height: sourceTex.height,
1480
+ shape: sourceTex.shape,
1370
1481
  format: projected.outputFormat,
1371
- data: halfFloat.f32ToF16Bytes(
1372
- sourceTex.data instanceof Uint8ClampedArray
1373
- ? new Uint8Array(
1374
- sourceTex.data.buffer,
1375
- sourceTex.data.byteOffset,
1376
- sourceTex.data.byteLength,
1377
- )
1378
- : sourceTex.data,
1379
- ),
1482
+ data: halfFloat.f32ToF16Bytes(sourceTex.data),
1380
1483
  colorSpace: 'linear',
1381
- mipmap: false,
1484
+ mips: { kind: 'none' },
1382
1485
  }
1383
1486
  : sourceTex;
1384
1487
 
@@ -1503,7 +1606,11 @@ export class GpuResidencyCache {
1503
1606
 
1504
1607
  const equirectTextureResult = device.createTexture({
1505
1608
  label: `equirect-${sourceId}`,
1506
- size: { width: tex.width, height: tex.height, depthOrArrayLayers: 1 },
1609
+ size: {
1610
+ width: tex.shape.extent.width,
1611
+ height: tex.shape.extent.height,
1612
+ depthOrArrayLayers: 1,
1613
+ },
1507
1614
  mipLevelCount: 1,
1508
1615
  sampleCount: 1,
1509
1616
  dimension: '2d',
@@ -1526,8 +1633,15 @@ export class GpuResidencyCache {
1526
1633
  const equirectWriteResult = device.queue.writeTexture(
1527
1634
  { texture: equirectGpuTex },
1528
1635
  tex.data,
1529
- { bytesPerRow: tex.width * bytesPerPixel, rowsPerImage: tex.height },
1530
- { width: tex.width, height: tex.height, depthOrArrayLayers: 1 },
1636
+ {
1637
+ bytesPerRow: tex.shape.extent.width * bytesPerPixel,
1638
+ rowsPerImage: tex.shape.extent.height,
1639
+ },
1640
+ {
1641
+ width: tex.shape.extent.width,
1642
+ height: tex.shape.extent.height,
1643
+ depthOrArrayLayers: 1,
1644
+ },
1531
1645
  );
1532
1646
  if (!equirectWriteResult.ok) return recordFailed(equirectWriteResult.error);
1533
1647
 
@@ -1803,20 +1917,16 @@ export class GpuResidencyCache {
1803
1917
  /**
1804
1918
  * Synthesize the `DecodedImage` view the texture-upload prelude consumes from
1805
1919
  * a `TextureAsset` POD (the record-stage pull path holds only the POD). The
1806
- * POD's `data` is the pixel bytes; `colorSpace` + `mipmap` drive the
1920
+ * POD's `data` is the pixel bytes; `colorSpace` + `mips` drive the
1807
1921
  * consistency assertion + mip count.
1808
1922
  */
1809
1923
  function decodedFromTexture(tex: TextureAsset): DecodedImage {
1810
- const bytes =
1811
- tex.data instanceof Uint8ClampedArray
1812
- ? new Uint8Array(tex.data.buffer, tex.data.byteOffset, tex.data.byteLength)
1813
- : tex.data;
1814
1924
  return {
1815
- bytes,
1816
- width: tex.width,
1817
- height: tex.height,
1925
+ bytes: tex.data,
1926
+ width: tex.shape.extent.width,
1927
+ height: tex.shape.extent.height,
1818
1928
  mime: 'image/png',
1819
1929
  colorSpace: tex.colorSpace,
1820
- mipmap: tex.mipmap,
1930
+ mipmap: tex.mips.kind === 'generate',
1821
1931
  };
1822
1932
  }
@@ -116,6 +116,23 @@ export function createRenderSurfaceError(
116
116
  return new RenderSurfaceError(`surface-${kind}-failed` as SurfaceFailureCode, detail);
117
117
  }
118
118
 
119
+ export interface TemporalFrameSubmitDetail {
120
+ readonly reason: 'queue-submit-failed';
121
+ }
122
+
123
+ export class TemporalFrameSubmitError extends Error {
124
+ readonly code = 'temporal-frame-submit-rejected' as const;
125
+ readonly expected = 'the staged frame is accepted by queue.submit before temporal facts advance';
126
+ readonly hint = 'inspect the queue submission and retry the frame after the device is available';
127
+ readonly detail: TemporalFrameSubmitDetail;
128
+
129
+ constructor(reason: 'queue-submit-failed') {
130
+ super(`temporal-frame-submit-rejected: ${reason}`);
131
+ this.name = 'TemporalFrameSubmitError';
132
+ this.detail = { reason };
133
+ }
134
+ }
135
+
119
136
  // ── ShadowInvalidConfigError ──────────────────────────────────────────────
120
137
 
121
138
  /**
@@ -1514,6 +1531,105 @@ export class PointsLinesPrepareFailedError extends Error {
1514
1531
  }
1515
1532
  }
1516
1533
 
1534
+ export interface VolumeOwnerConflictDetail {
1535
+ readonly ownerCount: number;
1536
+ }
1537
+
1538
+ export class VolumeOwnerConflictError extends Error {
1539
+ readonly code = 'volume-owner-conflict' as const;
1540
+ readonly expected = 'exactly one global VolumetricFog owner is authored';
1541
+ readonly hint = 'remove additional VolumetricFog owners and retry extraction';
1542
+ readonly detail: VolumeOwnerConflictDetail;
1543
+
1544
+ constructor(ownerCount: number) {
1545
+ super(`volume-owner-conflict: received ${ownerCount} owners`);
1546
+ this.name = 'VolumeOwnerConflictError';
1547
+ this.detail = { ownerCount };
1548
+ }
1549
+ }
1550
+
1551
+ export interface VolumeDensityShapeMismatchDetail {
1552
+ readonly guid: string;
1553
+ readonly viewDimension: string;
1554
+ }
1555
+
1556
+ export class VolumeDensityShapeMismatchError extends Error {
1557
+ readonly code = 'volume-density-shape-mismatch' as const;
1558
+ readonly expected = 'density is a linear 3D TextureAsset';
1559
+ readonly hint = 'bind a verified linear texture with viewDimension 3d';
1560
+ readonly detail: VolumeDensityShapeMismatchDetail;
1561
+
1562
+ constructor(guid: string, viewDimension: string) {
1563
+ super(`volume-density-shape-mismatch: ${viewDimension} density is not 3d`);
1564
+ this.name = 'VolumeDensityShapeMismatchError';
1565
+ this.detail = { guid, viewDimension };
1566
+ }
1567
+ }
1568
+
1569
+ export interface VolumeInvalidBoundsDetail {
1570
+ readonly min: readonly [number, number, number];
1571
+ readonly max: readonly [number, number, number];
1572
+ }
1573
+
1574
+ export class VolumeInvalidBoundsError extends Error {
1575
+ readonly code = 'volume-invalid-bounds' as const;
1576
+ readonly expected = 'bounds are finite and max is greater than min on every axis';
1577
+ readonly hint = 'set finite non-degenerate volume bounds';
1578
+ readonly detail: VolumeInvalidBoundsDetail;
1579
+
1580
+ constructor(bounds: VolumeInvalidBoundsDetail) {
1581
+ super('volume-invalid-bounds: bounds must be finite and non-degenerate');
1582
+ this.name = 'VolumeInvalidBoundsError';
1583
+ this.detail = bounds;
1584
+ }
1585
+ }
1586
+
1587
+ export interface VolumeInvalidParametersDetail {
1588
+ readonly field: string;
1589
+ readonly value: unknown;
1590
+ }
1591
+
1592
+ export class VolumeInvalidParametersError extends Error {
1593
+ readonly code = 'volume-invalid-parameters' as const;
1594
+ readonly expected = 'volume parameters remain finite and inside their closed ranges';
1595
+ readonly hint = 'repair extinction, albedo, emission, anisotropy, or maxDistance';
1596
+ readonly detail: VolumeInvalidParametersDetail;
1597
+
1598
+ constructor(input: { readonly maxDistance?: number; readonly anisotropy?: number }) {
1599
+ const field =
1600
+ input.maxDistance !== undefined && input.maxDistance <= 0 ? 'maxDistance' : 'parameters';
1601
+ const value = field === 'maxDistance' ? input.maxDistance : input.anisotropy;
1602
+ super(`volume-invalid-parameters: ${field} is outside the authored range`);
1603
+ this.name = 'VolumeInvalidParametersError';
1604
+ this.detail = { field, value };
1605
+ }
1606
+ }
1607
+
1608
+ export type VolumeError =
1609
+ | VolumeOwnerConflictError
1610
+ | VolumeDensityShapeMismatchError
1611
+ | VolumeInvalidBoundsError
1612
+ | VolumeInvalidParametersError;
1613
+
1614
+ export interface ProjectorBindingDetail {
1615
+ readonly guid: string;
1616
+ readonly status: 'pending' | 'invalid' | 'bind-failed';
1617
+ }
1618
+
1619
+ export class ProjectorBindingError extends Error {
1620
+ readonly code = 'projector-binding-failed' as const;
1621
+ readonly expected = 'authored projector is accepted and bound for both surface and volume';
1622
+ readonly hint =
1623
+ 'inspect the projector Meta/Pack receipt, repair the source, and retry with the same GUID';
1624
+ readonly detail: ProjectorBindingDetail;
1625
+
1626
+ constructor(guid: string, status: ProjectorBindingDetail['status']) {
1627
+ super(`projector binding failed for ${guid}: ${status}`);
1628
+ this.name = 'ProjectorBindingError';
1629
+ this.detail = { guid, status };
1630
+ }
1631
+ }
1632
+
1517
1633
  // -- RenderErrorCode / RenderError closed unions --------------------------------
1518
1634
 
1519
1635
  /**
@@ -1566,4 +1682,6 @@ export type RenderError =
1566
1682
  | PointsLinesStyleUnsupportedError
1567
1683
  | PointsLinesMaterialUnsupportedError
1568
1684
  | PointsLinesBudgetExceededError
1569
- | PointsLinesPrepareFailedError;
1685
+ | PointsLinesPrepareFailedError
1686
+ | ProjectorBindingError
1687
+ | VolumeError;
package/src/gpu-usage.ts CHANGED
@@ -12,3 +12,5 @@ export const GPU_BUFFER_USAGE_UNIFORM = 0x40;
12
12
  export const GPU_BUFFER_USAGE_STORAGE = 0x80;
13
13
  export const GPU_BUFFER_USAGE_INDIRECT = 0x100;
14
14
  export const GPU_BUFFER_USAGE_MAP_READ = 0x01;
15
+ /** GPUBufferUsage.QUERY_RESOLVE, used by optional timestamp captures. */
16
+ export const GPU_BUFFER_USAGE_QUERY_RESOLVE = 0x200;
package/src/index.ts CHANGED
@@ -67,6 +67,7 @@ export {
67
67
  } from './components/skybox-background';
68
68
  export { Skylight } from './components/skylight';
69
69
  export { SortKey } from './components/sort-key';
70
+ export type { SpotLightAuthoring, SpotLightProjector } from './components/spot-light';
70
71
  export { SpotLight } from './components/spot-light';
71
72
  export {
72
73
  Visibility,
@@ -139,7 +140,11 @@ export type {
139
140
  export { Materials, MaterialTransmissionContractError } from './materials';
140
141
  // The host-facing default is a stable profile value; implementation-only
141
142
  // pipeline helpers remain behind the package boundary.
142
- export { DEFAULT_STANDARD_PROFILE } from './pipeline/standard-profile';
143
+ export {
144
+ DEFAULT_STANDARD_PROFILE,
145
+ type StandardVolumetricFogProfile,
146
+ type StandardVolumetricFogQuality,
147
+ } from './pipeline/standard-profile';
143
148
  export { renderComponentsPlugin } from './plugin';
144
149
  export {
145
150
  admitPointsLines,
@@ -170,6 +175,10 @@ export type {
170
175
  RenderWorldLease,
171
176
  } from './render-contract';
172
177
  export { RENDER_PHASE_CATALOG } from './render-contract';
178
+ export type {
179
+ TemporalInspectionInput,
180
+ TemporalInspectionStatus,
181
+ } from './renderer-inspect';
173
182
  export type { TemporalInspection, TemporalResourceInspection } from './temporal/inspection';
174
183
  export {
175
184
  SCENE_DATA_TEMPORAL_V1_DESCRIPTOR,
@@ -187,3 +196,31 @@ export {
187
196
  type SceneDataInspection,
188
197
  } from './temporal/scene-data-catalog';
189
198
  export type { TemporalView } from './temporal/view';
199
+ export {
200
+ hasVolumetricFogCapability,
201
+ type IntegratedVolumeResource,
202
+ resolveIntegratedVolumeConsumer,
203
+ resolveSelectedVolumetricLight,
204
+ resolveVolumetricFogLightPair,
205
+ type VolumeConsumer,
206
+ type VolumetricFogLightKind,
207
+ type VolumetricFogLightPairResolution,
208
+ type VolumetricFogLightResolution,
209
+ } from './volume/capability';
210
+ export {
211
+ type ValidatedVolumetricFog,
212
+ type VolumeBounds,
213
+ type VolumeDensityBinding,
214
+ VolumetricFog,
215
+ type VolumetricFogAuthoring,
216
+ type VolumetricFogLightSelection,
217
+ validateVolumetricFog,
218
+ } from './volume/component';
219
+ export { extractVolumetricFog, type VolumetricFogExtract } from './volume/extract';
220
+ export {
221
+ inspectVolumetricFog,
222
+ type VolumetricFogInspection,
223
+ type VolumetricFogInspectionInput,
224
+ type VolumetricFogInspectionStatus,
225
+ type VolumetricFogResourceStage,
226
+ } from './volume/inspection';