typegpu 0.5.5 → 0.5.6

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/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
- import { A as AnyWgslData, T as TgpuNamable, I as Infer, $ as $internal, F as F32, a as F16, b as I32, U as U32, V as Vec2f, c as Vec3f, d as Vec4f, e as Vec2h, f as Vec3h, g as Vec4h, h as Vec2i, i as Vec3i, j as Vec4i, k as Vec2u, l as Vec3u, m as Vec4u, D as Decorated, n as AnyWgslStruct, o as $repr, B as BaseData, L as Location, W as WgslStruct, p as WgslArray, q as Disarray, r as AnyUnstruct, s as VertexFormat, t as TgpuVertexAttrib, K as KindToDefaultFormatMap, u as KindToAcceptedAttribMap, v as AnyData, O as OmitProps, P as Prettify, M as Mutable, w as WgslTypeLiteral, x as UnionToIntersection, y as InferPartial, z as MemIdentity, C as Default, E as InferGPU, G as AnyVecInstance, H as AnyMatInstance } from './dataTypes-ts2Ccted.js';
2
- import { A as AnyAttribute, a as AnyComputeBuiltin, D as Decorate, I as IsBuiltin, H as HasCustomLocation, b as AnyFragmentInputBuiltin, c as AnyFragmentOutputBuiltin, O as OmitBuiltins } from './attributes-DsIdcdq4.js';
3
- import * as smol from 'tinyest';
1
+ import { A as AnyWgslData, T as TgpuNamable, I as Infer, $ as $internal, F as F32, a as F16, b as I32, U as U32, V as Vec2f, c as Vec3f, d as Vec4f, e as Vec2h, f as Vec3h, g as Vec4h, h as Vec2i, i as Vec3i, j as Vec4i, k as Vec2u, l as Vec3u, m as Vec4u, D as Decorated, n as AnyWgslStruct, o as $repr, B as BaseData, L as Location, W as WgslStruct, p as WgslArray, q as Disarray, r as AnyUnstruct, s as VertexFormat, t as TgpuVertexAttrib, K as KindToDefaultFormatMap, u as KindToAcceptedAttribMap, v as AnyData, O as OmitProps, P as Prettify, M as Mutable, w as WgslTypeLiteral, x as UnionToIntersection, y as InferPartial, z as MemIdentity, C as Default, E as InferGPU, G as AnyVecInstance, H as AnyMatInstance } from './dataTypes-6k4EJeol.js';
2
+ import { A as AnyAttribute, a as AnyComputeBuiltin, D as Decorate, I as IsBuiltin, H as HasCustomLocation, b as AnyFragmentInputBuiltin, c as AnyFragmentOutputBuiltin, O as OmitBuiltins } from './attributes-B90UjSYb.js';
3
+ import * as tinyest from 'tinyest';
4
4
  import { ArgNames, Block } from 'tinyest';
5
- import { T as TgpuTexture, R as Render, a as TgpuReadonlyTexture, b as TgpuWriteonlyTexture, c as TgpuMutableTexture, d as TgpuSampledTexture, e as TgpuSampler, f as TgpuComparisonSampler, S as StorageFlag, g as StorageTextureTexelFormat, h as StorageTextureDimension, C as ChannelFormatToSchema, V as ViewDimensionToDimension, i as TexelFormatToDataType, j as Sampled, k as TextureProps, l as ChannelTypeToLegalFormats, m as SampleTypeToStringChannelType, n as TgpuAnyTextureView, s as sampler, o as comparisonSampler } from './sampler-CPNwYXSH.js';
6
- export { y as Storage, q as isComparisonSampler, r as isSampledTextureView, p as isSampler, t as isStorageTextureView, u as isTexture, v as isUsableAsRender, w as isUsableAsSampled, x as isUsableAsStorage } from './sampler-CPNwYXSH.js';
5
+ import { T as TgpuTexture, R as Render, a as TgpuReadonlyTexture, b as TgpuWriteonlyTexture, c as TgpuMutableTexture, d as TgpuSampledTexture, e as TgpuSampler, f as TgpuComparisonSampler, S as StorageFlag, g as StorageTextureTexelFormat, h as StorageTextureDimension, C as ChannelFormatToSchema, V as ViewDimensionToDimension, i as TexelFormatToDataType, j as Sampled, k as TextureProps, l as ChannelTypeToLegalFormats, m as SampleTypeToStringChannelType, n as TgpuAnyTextureView, s as sampler, o as comparisonSampler } from './sampler-ByLNpSxj.js';
6
+ export { y as Storage, q as isComparisonSampler, r as isSampledTextureView, p as isSampler, t as isStorageTextureView, u as isTexture, v as isUsableAsRender, w as isUsableAsSampled, x as isUsableAsStorage } from './sampler-ByLNpSxj.js';
7
7
 
8
8
  interface TgpuConst<TDataType extends AnyWgslData = AnyWgslData> extends TgpuNamable {
9
9
  readonly value: Infer<TDataType>;
@@ -36,8 +36,8 @@ declare function declare(declaration: string): TgpuDeclare;
36
36
  * Information extracted from transpiling a JS function.
37
37
  */
38
38
  type TranspilationResult = {
39
- argNames: smol.ArgNames;
40
- body: smol.Block;
39
+ argNames: tinyest.ArgNames;
40
+ body: tinyest.Block;
41
41
  /**
42
42
  * All identifiers found in the function code that are not declared in the
43
43
  * function itself, or in the block that is accessing that identifier.
@@ -48,7 +48,8 @@ type InferArgs<T extends unknown[]> = {
48
48
  [Idx in keyof T]: Infer<T[Idx]>;
49
49
  };
50
50
  type InferReturn<T> = T extends undefined ? void : Infer<T>;
51
- type Implementation<Args extends unknown[] = unknown[], Return = unknown> = string | ((...args: Args) => Return);
51
+ type JsImplementation<Args extends unknown[] | Record<string, unknown> = unknown[] | Record<string, unknown>, Return = unknown> = (...args: Args extends unknown[] ? InferArgs<Args> : Args extends Record<string, never> ? [] : [InferIO<Args>]) => InferReturn<Return>;
52
+ type Implementation<Args extends unknown[] | Record<string, unknown> = unknown[] | Record<string, unknown>, Return = unknown> = string | JsImplementation<Args, Return>;
52
53
  type BaseIOData = F32 | F16 | I32 | U32 | Vec2f | Vec3f | Vec4f | Vec2h | Vec3h | Vec4h | Vec2i | Vec3i | Vec4i | Vec2u | Vec3u | Vec4u;
53
54
  type IOData = BaseIOData | Decorated<BaseIOData, AnyAttribute[]>;
54
55
  type IORecord<TElementType extends IOData = IOData> = Record<string, TElementType>;
@@ -111,7 +112,7 @@ declare function computeFn<ComputeIn extends Record<string, AnyComputeBuiltin>>(
111
112
  }): TgpuComputeFnShell<ComputeIn>;
112
113
 
113
114
  /**
114
- * Used to transpile JS resources into SMoL on demand.
115
+ * Used to transpile JS resources into tinyest on demand.
115
116
  */
116
117
  interface JitTranspiler {
117
118
  transpileFn(rawJs: string): TranspilationResult;
@@ -1027,6 +1028,9 @@ type TgpuFnShell<Args extends AnyWgslData[] | Record<string, AnyWgslData>, Retur
1027
1028
  does: ((implementation: (...args: Args extends AnyWgslData[] ? InferArgs<Args> : [InferIO<Args>]) => InferReturn<Return>) => TgpuFn<Args, Return>) & ((implementation: string) => TgpuFn<Args, Return>);
1028
1029
  };
1029
1030
  interface TgpuFnBase<Args extends AnyWgslData[] | Record<string, AnyWgslData>, Return extends AnyWgslData | undefined = undefined> extends TgpuNamable, Labelled {
1031
+ readonly [$internal]: {
1032
+ implementation: Implementation<Args, Return>;
1033
+ };
1030
1034
  readonly resourceType: 'function';
1031
1035
  readonly shell: TgpuFnShellHeader<Args, Return>;
1032
1036
  readonly '~providing'?: Providing | undefined;
@@ -1034,11 +1038,7 @@ interface TgpuFnBase<Args extends AnyWgslData[] | Record<string, AnyWgslData>, R
1034
1038
  with<T>(slot: TgpuSlot<T>, value: Eventual<T>): TgpuFn<Args, Return>;
1035
1039
  with<T extends AnyWgslData>(accessor: TgpuAccessor<T>, value: TgpuFn<[], T> | TgpuBufferUsage<T> | Infer<T>): TgpuFn<Args, Return>;
1036
1040
  }
1037
- type TgpuFn<Args extends AnyWgslData[] | Record<string, AnyWgslData> = AnyWgslData[], Return extends AnyWgslData | undefined = AnyWgslData | undefined> = TgpuFnBase<Args, Return> & ((...args: Args extends AnyWgslData[] ? InferArgs<Args> : Args extends Record<string, never> ? [] : [InferIO<Args>]) => InferReturn<Return>) & {
1038
- readonly [$internal]: {
1039
- implementation: Implementation<Args extends AnyWgslData[] ? InferArgs<Args> : Args extends Record<string, never> ? [] : [InferIO<Args>], InferReturn<Return>>;
1040
- };
1041
- };
1041
+ type TgpuFn<Args extends AnyWgslData[] | Record<string, AnyWgslData> = AnyWgslData[], Return extends AnyWgslData | undefined = AnyWgslData | undefined> = TgpuFnBase<Args, Return> & ((...args: Args extends AnyWgslData[] ? InferArgs<Args> : Args extends Record<string, never> ? [] : [InferIO<Args>]) => InferReturn<Return>);
1042
1042
  declare function fn<Args extends AnyWgslData[] | Record<string, AnyWgslData> | []>(argTypes: Args, returnType?: undefined): TgpuFnShell<Args, undefined>;
1043
1043
  declare function fn<Args extends AnyWgslData[] | Record<string, AnyWgslData> | [], Return extends AnyWgslData>(argTypes: Args, returnType: Return): TgpuFnShell<Args, Return>;
1044
1044
  declare function isTgpuFn<Args extends AnyWgslData[], Return extends AnyWgslData | undefined = undefined>(value: unknown | TgpuFn<Args, Return>): value is TgpuFn<Args, Return>;
package/index.js CHANGED
@@ -1,26 +1,26 @@
1
- import{Z as F,_ as W,a as _r,aa as V,b as Lr,ba as c,c as ce,d as Qe,da as Vr,e as Y,f as Cr,g as Q,ga as Er,h as _,i as Ce,ia as Xe,ja as xe,ka as Ct,la as kr}from"./chunk-HZAXWB4J.js";import{$ as b,A as Pt,B as x,C as _e,D as R,E as P,F as _t,G as qe,H as He,I as Je,K as Te,L as Lt,M as O,N as v,O as B,P as l,Q as Le,T as Ar,U as Ur,V as Ir,W as Br,X as Rr,Y as Ye,Z as C,_ as G,a as Ue,b as me,ba as Pr,c as vt,d as Dt,e as Ft,f as ae,g as Ie,h as Be,ha as ye,i as Dr,j,k as At,l as Ut,m as oe,n as y,o as Fr,p as It,q as Bt,r as L,s as Re,t as H,u as J,v as Rt,w as se,x as Pe,y as ge,z as fe}from"./chunk-T5Y2EQPZ.js";function E(e){return e?.resourceType==="slot"}function k(e){return e?.resourceType==="derived"}function Ve(e){return e?.["~providing"]!==void 0}function ie(e){return e?.resourceType==="accessor"}var A={type:"unknown"};function Vt(e){return typeof e?.["~resolve"]=="function"}function z(e){return typeof e=="number"||typeof e=="boolean"||typeof e=="string"||Vt(e)||C(e)||E(e)||k(e)||Ve(e)}function $r(e){return!!e&&typeof e=="object"&&"getMappedRange"in e&&"mapAsync"in e}function Ze(e){return e?.resourceType==="buffer-usage"}function Or(e){return!!e&&typeof e=="object"&&!!e?.[y]?.dataType}function Gr(e){return!!e?.[y]}var Mn=["vec2f","vec2h","vec2i","vec2u","vec2<bool>","vec3f","vec3h","vec3i","vec3u","vec3<bool>","vec4f","vec4h","vec4i","vec4u","vec4<bool>","struct"],Nn={f:{1:l,2:L,3:se,4:x},h:{1:Le,2:Re,3:Pe,4:_e},i:{1:B,2:H,3:ge,4:R},u:{1:v,2:J,3:fe,4:P},b:{1:O,2:Rt,3:Pt,4:_t}},Wr={vec2f:L,vec2h:Re,vec2i:H,vec2u:J,"vec2<bool>":Rt,vec3f:se,vec3h:Pe,vec3i:ge,vec3u:fe,"vec3<bool>":Pt,vec4f:x,vec4h:_e,vec4i:R,vec4u:P,"vec4<bool>":_t,mat2x2f:qe,mat3x3f:He,mat4x4f:Je},Mr={vec2f:l,vec2h:Le,vec2i:B,vec2u:v,"vec2<bool>":O,vec3f:l,vec3h:Le,vec3i:B,vec3u:v,"vec3<bool>":O,vec4f:l,vec4h:Le,vec4i:B,vec4u:v,"vec4<bool>":O,mat2x2f:L,mat3x3f:se,mat4x4f:x};function be(e,t){if(typeof e=="string"||typeof e=="number"||typeof e=="boolean")return A;if(k(e)||E(e)){let o=j();if(!o)throw new Error("Resolution context not found when unwrapping slot or derived");let s=o.unwrap(e);return he(s)}let r=e;for(Or(r)&&(r=r[y].dataType);ye(r);)r=r.inner;let n="kind"in r?r.kind:r.type;if(n==="struct")return r.propTypes[t]??A;let a=t.length;if(Mn.includes(n)&&a>=1&&a<=4){let o=n.includes("bool")?"b":n[4],s=Nn[o][a];if(s)return s}return C(r)?r:A}function Nr(e){if(C(e)){if(G(e))return e.elementType;if(e.type in Mr)return Mr[e.type]}return A}function he(e){if(k(e)||E(e))return he(e.value);if(typeof e=="string")return A;if(typeof e=="number")return Et(String(e))?.dataType??A;if(typeof e=="boolean")return O;if("kind"in e){let t=e.kind;if(t in Wr)return Wr[t]}return C(e)?e:A}function Et(e){if(/^0x[0-9a-f]+$/i.test(e))return{value:e,dataType:Te};if(/^0b[01]+$/i.test(e))return{value:`${Number.parseInt(e.slice(2),2)}`,dataType:Te};if(/^-?(?:\d+\.\d*|\d*\.\d+)$/i.test(e))return{value:e,dataType:Lt};if(/^-?\d+(?:\.\d+)?e-?\d+$/i.test(e))return{value:e,dataType:Lt};if(/^-?\d+$/i.test(e))return{value:e,dataType:Te}}var M={get(e,t){if(t in e)return Reflect.get(e,t);if(t!=="~providing")return t==="toString"||t===Symbol.toStringTag||t===Symbol.toPrimitive?()=>e.toString():new Proxy({"~resolve":r=>`${r.resolve(e)}.${String(t)}`,toString:()=>`.value(...).${String(t)}:${e.label??"<unnamed>"}`,[y]:{dataType:be(e[y].dataType,String(t))}},M)}};function Ee(e){let t=e;for(;E(t)||k(t)||ie(t)||Ze(t);)t=t.value;return t}function jr(e,t){return new kt(e,t)}var kt=class{constructor(t,r){this.dataType=t;this._value=r;this[y]={dataType:t}}_label;[y];get label(){return this._label}$name(t){return this._label=t,this}"~resolve"(t){let r=t.names.makeUnique(this._label),n=t.resolveValue(this._value,this.dataType);return t.addDeclaration(`const ${r} = ${n};`),r}toString(){return`const:${this.label??"<unnamed>"}`}get value(){return oe()?new Proxy({"~resolve":t=>t.resolve(this),toString:()=>`.value:${this.label??"<unnamed>"}`,[y]:{dataType:this.dataType}},M):this._value}};function N(e){return!!e&&(typeof e=="object"||typeof e=="function")&&"$name"in e}function K(e,t){for(let[r,n]of Object.entries(t))e[r]=n,N(n)&&(!("label"in n)||n.label===void 0)&&n.$name(r)}function zr(e,t,r){let n=[...e.matchAll(/:\s*(?<arg>.*?)\s*[,)]/g)].map(a=>a?a[1]:void 0);r(Object.fromEntries(t.flatMap((a,o)=>{let s=n?n[o]:void 0;return b(a)&&s!==void 0?[[s,a]]:[]})))}function we(e,t,r){let n=e.match(/->\s(?<output>[\w\d_]+)\s{/),a=n?n[1]?.trim():void 0;b(t)&&a&&!/\s/g.test(a)&&r({[a]:t})}function jn(e){return new RegExp(`(?<![\\w\\$_.])${e.replaceAll(".","\\.").replaceAll("$","\\$")}(?![\\w\\$_])`,"g")}function ue(e,t,r){return Object.entries(t).reduce((n,[a,o])=>z(o)||ce(o)?n.replaceAll(jn(a),e.resolve(o)):o!==null&&typeof o=="object"?([...r.matchAll(new RegExp(`${a.replaceAll(".","\\.").replaceAll("$","\\$")}\\.(?<prop>.*?)(?![\\w\\$_])`,"g"))].map(i=>i[1])??[]).reduce((i,p)=>p&&p in o?ue(e,{[`${a}.${p}`]:o[p]},i):i,n):n,r)}function Kr(e){return new $t(e)}var $t=class{constructor(t){this.declaration=t}externalsToApply=[];$uses(t){return this.externalsToApply.push(t),this}"~resolve"(t){let r={};for(let a of this.externalsToApply)K(r,a);let n=ue(t,r,this.declaration);return t.addDeclaration(n),""}toString(){return`declare: ${this.declaration}`}};var qr=new WeakMap;function Hr(e){return qr.get(e)}function Jr(e,t,r){return qr.set(e,{ast:t,externals:r}),e}function Yr(e){return()=>{throw new Error(`The function "${e??"<unnamed>"}" is invokable only on the GPU. If you want to use it on the CPU, mark it with the "kernel & js" directive.`)}}function Qr(e,t){throw new Error(`Failed to handle ${e} at ${t}`)}function ke(e){return typeof e?.format=="string"}function Xr(e,t){let r=[];if(_(e)){if(!ke(t))throw new Error("Shader expected a single attribute, not a record of attributes to be passed in.");return r.push(t._layout),{usedVertexLayouts:r,bufferDefinitions:[{arrayStride:t._layout.stride,stepMode:t._layout.stepMode,attributes:[{format:t.format,offset:t.offset,shaderLocation:Q(e)??0}]}]}}let n=[],a=new WeakMap,o=0;for(let[s,i]of Object.entries(e)){if(Xe(i))continue;let p=t[s];if(!p)throw new Error(`An attribute by the name of '${s}' was not provided to the shader.`);let u=p._layout,d=a.get(u);d||(r.push(u),d=[],n.push({arrayStride:u.stride,stepMode:u.stepMode,attributes:d}),a.set(u,d)),o=Q(i)??o,d.push({format:p.format,offset:p.offset,shaderLocation:o++})}return{usedVertexLayouts:r,bufferDefinitions:n}}var zn=["bool","f32","f16","i32","u32","vec2f","vec3f","vec4f","vec2h","vec3h","vec4h","vec2i","vec3i","vec4i","vec2u","vec3u","vec4u","vec2<bool>","vec3<bool>","vec4<bool>","mat2x2f","mat3x3f","mat4x4f"];function Kn(e){return zn.includes(e.type)}function Ot(e,[t,r]){return` ${xe(r)}${t}: ${e.resolve(r)},
1
+ import{Z as A,_ as M,a as Cr,aa as V,b as Er,ba as c,c as xe,d as Xe,e as Q,f as Vr,fa as Et,g as X,h as L,ha as Ze,i as Ee,ia as be,ja as Vt,ka as $r}from"./chunk-YVK55BVR.js";import{A as Pt,B as b,C as Le,D as _,E as P,F as Lt,G as He,H as Je,I as Ye,K as ye,L as Ct,M as G,N as v,O as R,P as l,Q as Ce,S as Ir,T as Br,U as Rr,V as _r,W as Pr,X as Qe,Y as E,Z as W,_ as h,a as Ie,aa as Lr,b as ge,c as Dt,d as Ft,e as At,f as oe,g as Be,ga as ce,h as Re,i as Ar,j as z,k as Ut,l as It,m as se,n as y,o as Ur,p as Bt,q as Rt,r as C,s as _e,t as J,u as Y,v as _t,w as ie,x as Pe,y as fe,z as Te}from"./chunk-KJHEEZQT.js";function $(e){return e?.resourceType==="slot"}function k(e){return e?.resourceType==="derived"}function Ve(e){return e?.["~providing"]!==void 0}function ue(e){return e?.resourceType==="accessor"}var U={type:"unknown"};function $t(e){return typeof e?.["~resolve"]=="function"}function K(e){return typeof e=="number"||typeof e=="boolean"||typeof e=="string"||$t(e)||E(e)||$(e)||k(e)||Ve(e)}function kr(e){return!!e&&typeof e=="object"&&"getMappedRange"in e&&"mapAsync"in e}function et(e){return e?.resourceType==="buffer-usage"}function Or(e){return!!e&&typeof e=="object"&&!!e?.[y]?.dataType}function Gr(e){return!!e?.[y]}var Mn=["vec2f","vec2h","vec2i","vec2u","vec2<bool>","vec3f","vec3h","vec3i","vec3u","vec3<bool>","vec4f","vec4h","vec4i","vec4u","vec4<bool>","struct"],Nn={f:{1:l,2:C,3:ie,4:b},h:{1:Ce,2:_e,3:Pe,4:Le},i:{1:R,2:J,3:fe,4:_},u:{1:v,2:Y,3:Te,4:P},b:{1:G,2:_t,3:Pt,4:Lt}},Wr={vec2f:C,vec2h:_e,vec2i:J,vec2u:Y,"vec2<bool>":_t,vec3f:ie,vec3h:Pe,vec3i:fe,vec3u:Te,"vec3<bool>":Pt,vec4f:b,vec4h:Le,vec4i:_,vec4u:P,"vec4<bool>":Lt,mat2x2f:He,mat3x3f:Je,mat4x4f:Ye},Mr={vec2f:l,vec2h:Ce,vec2i:R,vec2u:v,"vec2<bool>":G,vec3f:l,vec3h:Ce,vec3i:R,vec3u:v,"vec3<bool>":G,vec4f:l,vec4h:Ce,vec4i:R,vec4u:v,"vec4<bool>":G,mat2x2f:C,mat3x3f:ie,mat4x4f:b};function he(e,t){if(typeof e=="string"||typeof e=="number"||typeof e=="boolean")return U;if(k(e)||$(e)){let o=z();if(!o)throw new Error("Resolution context not found when unwrapping slot or derived");let s=o.unwrap(e);return we(s)}let r=e;for(Or(r)&&(r=r[y].dataType);ce(r);)r=r.inner;let n="kind"in r?r.kind:r.type;if(n==="struct")return r.propTypes[t]??U;let a=t.length;if(Mn.includes(n)&&a>=1&&a<=4){let o=n.includes("bool")?"b":n[4],s=Nn[o][a];if(s)return s}return E(r)?r:U}function Nr(e){if(E(e)){if(W(e))return e.elementType;if(e.type in Mr)return Mr[e.type]}return U}function we(e){if(k(e)||$(e))return we(e.value);if(typeof e=="string")return U;if(typeof e=="number")return kt(String(e))?.dataType??U;if(typeof e=="boolean")return G;if("kind"in e){let t=e.kind;if(t in Wr)return Wr[t]}return E(e)?e:U}function kt(e){if(/^0x[0-9a-f]+$/i.test(e))return{value:e,dataType:ye};if(/^0b[01]+$/i.test(e))return{value:`${Number.parseInt(e.slice(2),2)}`,dataType:ye};if(/^-?(?:\d+\.\d*|\d*\.\d+)$/i.test(e))return{value:e,dataType:Ct};if(/^-?\d+(?:\.\d+)?e-?\d+$/i.test(e))return{value:e,dataType:Ct};if(/^-?\d+$/i.test(e))return{value:e,dataType:ye}}var N={get(e,t){if(t in e)return Reflect.get(e,t);if(t!=="~providing")return t==="toString"||t===Symbol.toStringTag||t===Symbol.toPrimitive?()=>e.toString():new Proxy({"~resolve":r=>`${r.resolve(e)}.${String(t)}`,toString:()=>`.value(...).${String(t)}:${e.label??"<unnamed>"}`,[y]:{dataType:he(e[y].dataType,String(t))}},N)}};function $e(e){let t=e;for(;$(t)||k(t)||ue(t)||et(t);)t=t.value;return t}function jr(e,t){return new Ot(e,t)}var Ot=class{constructor(t,r){this.dataType=t;this._value=r;this[y]={dataType:t}}_label;[y];get label(){return this._label}$name(t){return this._label=t,this}"~resolve"(t){let r=t.names.makeUnique(this._label),n=t.resolveValue(this._value,this.dataType);return t.addDeclaration(`const ${r} = ${n};`),r}toString(){return`const:${this.label??"<unnamed>"}`}get value(){return se()?new Proxy({"~resolve":t=>t.resolve(this),toString:()=>`.value:${this.label??"<unnamed>"}`,[y]:{dataType:this.dataType}},N):this._value}};function j(e){return!!e&&(typeof e=="object"||typeof e=="function")&&"$name"in e}function q(e,t){for(let[r,n]of Object.entries(t))e[r]=n,j(n)&&(!("label"in n)||n.label===void 0)&&n.$name(r)}function zr(e,t,r){let n=[...e.matchAll(/:\s*(?<arg>.*?)\s*[,)]/g)].map(a=>a?a[1]:void 0);r(Object.fromEntries(t.flatMap((a,o)=>{let s=n?n[o]:void 0;return h(a)&&s!==void 0?[[s,a]]:[]})))}function Se(e,t,r){let n=e.match(/->\s(?<output>[\w\d_]+)\s{/),a=n?n[1]?.trim():void 0;h(t)&&a&&!/\s/g.test(a)&&r({[a]:t})}function jn(e){return new RegExp(`(?<![\\w\\$_.])${e.replaceAll(".","\\.").replaceAll("$","\\$")}(?![\\w\\$_])`,"g")}function pe(e,t,r){return Object.entries(t).reduce((n,[a,o])=>K(o)||xe(o)?n.replaceAll(jn(a),e.resolve(o)):o!==null&&typeof o=="object"?([...r.matchAll(new RegExp(`${a.replaceAll(".","\\.").replaceAll("$","\\$")}\\.(?<prop>.*?)(?![\\w\\$_])`,"g"))].map(i=>i[1])??[]).reduce((i,p)=>p&&p in o?pe(e,{[`${a}.${p}`]:o[p]},i):i,n):n,r)}function Kr(e){return new Gt(e)}var Gt=class{constructor(t){this.declaration=t}externalsToApply=[];$uses(t){return this.externalsToApply.push(t),this}"~resolve"(t){let r={};for(let a of this.externalsToApply)q(r,a);let n=pe(t,r,this.declaration);return t.addDeclaration(n),""}toString(){return`declare: ${this.declaration}`}};var qr=new WeakMap;function Hr(e){return qr.get(e)}function Jr(e,t,r){return qr.set(e,{ast:t,externals:r}),e}function Yr(e){return()=>{throw new Error(`The function "${e??"<unnamed>"}" is invokable only on the GPU. If you want to use it on the CPU, mark it with the "kernel & js" directive.`)}}function Qr(e,t){throw new Error(`Failed to handle ${e} at ${t}`)}function ke(e){return typeof e?.format=="string"}function Xr(e,t){let r=[];if(L(e)){if(!ke(t))throw new Error("Shader expected a single attribute, not a record of attributes to be passed in.");return r.push(t._layout),{usedVertexLayouts:r,bufferDefinitions:[{arrayStride:t._layout.stride,stepMode:t._layout.stepMode,attributes:[{format:t.format,offset:t.offset,shaderLocation:X(e)??0}]}]}}let n=[],a=new WeakMap,o=0;for(let[s,i]of Object.entries(e)){if(Ze(i))continue;let p=t[s];if(!p)throw new Error(`An attribute by the name of '${s}' was not provided to the shader.`);let u=p._layout,d=a.get(u);d||(r.push(u),d=[],n.push({arrayStride:u.stride,stepMode:u.stepMode,attributes:d}),a.set(u,d)),o=X(i)??o,d.push({format:p.format,offset:p.offset,shaderLocation:o++})}return{usedVertexLayouts:r,bufferDefinitions:n}}var zn=["bool","f32","f16","i32","u32","vec2f","vec3f","vec4f","vec2h","vec3h","vec4h","vec2i","vec3i","vec4i","vec2u","vec3u","vec4u","vec2<bool>","vec3<bool>","vec4<bool>","mat2x2f","mat3x3f","mat4x4f"];function Kn(e){return zn.includes(e.type)}function Wt(e,[t,r]){return` ${be(r)}${t}: ${e.resolve(r)},
2
2
  `}function qn(e,t){let r=e.names.makeUnique(t.label);return e.addDeclaration(`
3
3
  struct ${r} {
4
- ${Object.entries(t.propTypes).map(n=>Ot(e,n)).join("")}}
4
+ ${Object.entries(t.propTypes).map(n=>Wt(e,n)).join("")}}
5
5
  `),r}function Hn(e,t){let r=e.names.makeUnique(t.label);return e.addDeclaration(`
6
6
  struct ${r} {
7
- ${Object.entries(t.propTypes).map(n=>ke(n[1])?Ot(e,[n[0],Ce[n[1].format]]):Ot(e,n)).join("")}
7
+ ${Object.entries(t.propTypes).map(n=>ke(n[1])?Wt(e,[n[0],Ee[n[1].format]]):Wt(e,n)).join("")}
8
8
  }
9
- `),r}function Jn(e,t){let r=e.resolve(t.elementType);return t.elementCount===0?`array<${r}>`:`array<${r}, ${t.elementCount}>`}function Yn(e,t){let r=e.resolve(ke(t.elementType)?Ce[t.elementType.format]:t.elementType);return t.elementCount===0?`array<${r}>`:`array<${r}, ${t.elementCount}>`}function Gt(e,t){if(ce(t))return t.type==="unstruct"?Hn(e,t):t.type==="disarray"?Yn(e,t):t.type==="loose-decorated"?e.resolve(ke(t.inner)?Ce[t.inner.format]:t.inner):e.resolve(Ce[t.type]);if(Kn(t))return t.type;if(t.type==="struct")return qn(e,t);if(t.type==="array")return Jn(e,t);if(t.type==="atomic")return`atomic<${Gt(e,t.inner)}>`;if(t.type==="decorated")return e.resolve(t.inner);if(t.type==="ptr")return t.addressSpace==="storage"?`ptr<storage, ${e.resolve(t.inner)}, ${t.access==="read-write"?"read_write":t.access}>`:`ptr<${t.addressSpace}, ${e.resolve(t.inner)}>`;if(t.type==="abstractInt"||t.type==="abstractFloat")throw new Error("Abstract types have no concrete representation in WGSL");if(t.type==="void")throw new Error("Void has no representation in WGSL");Qr(t,"resolveData")}var Xn=["==","!=","<","<=",">",">=","<<",">>","+","-","*","/","%","|","^","&","&&","||"],Zn=["&&","||","==","!=","<","<=",">",">="];function Zr(e,t,r){return r?Zn.includes(t)?O:t==="="?r:e:t==="!"||t==="~"?O:e}function h(e,t){return z(t.value)?e.resolve(t.value):String(t.value)}function ea(e){throw new Error(`'${JSON.stringify(e)}' was not handled by the WGSL generator.`)}function en(e,t){return{value:t?"true":"false",dataType:O}}function tn(e,t){e.pushBlockScope();try{return`${e.indent()}{
10
- ${t.b.map(r=>pe(e,r)).join(`
9
+ `),r}function Jn(e,t){let r=e.resolve(t.elementType);return t.elementCount===0?`array<${r}>`:`array<${r}, ${t.elementCount}>`}function Yn(e,t){let r=e.resolve(ke(t.elementType)?Ee[t.elementType.format]:t.elementType);return t.elementCount===0?`array<${r}>`:`array<${r}, ${t.elementCount}>`}function Mt(e,t){if(xe(t))return t.type==="unstruct"?Hn(e,t):t.type==="disarray"?Yn(e,t):t.type==="loose-decorated"?e.resolve(ke(t.inner)?Ee[t.inner.format]:t.inner):e.resolve(Ee[t.type]);if(Kn(t))return t.type;if(t.type==="struct")return qn(e,t);if(t.type==="array")return Jn(e,t);if(t.type==="atomic")return`atomic<${Mt(e,t.inner)}>`;if(t.type==="decorated")return e.resolve(t.inner);if(t.type==="ptr")return t.addressSpace==="storage"?`ptr<storage, ${e.resolve(t.inner)}, ${t.access==="read-write"?"read_write":t.access}>`:`ptr<${t.addressSpace}, ${e.resolve(t.inner)}>`;if(t.type==="abstractInt"||t.type==="abstractFloat")throw new Error("Abstract types have no concrete representation in WGSL");if(t.type==="void")throw new Error("Void has no representation in WGSL");Qr(t,"resolveData")}import{BufferReader as Jt,BufferWriter as Yt}from"typed-binary";import{getSystemEndianness as ta}from"typed-binary";import{Measurer as Xn}from"typed-binary";function Qn(e,t){let r="size"in e?e.size:e.currentByteOffset,n=t-1,a=r&n;"skipBytes"in e?e.skipBytes(t-a&n):e.add(t-a&n)}var w=Qn;var Zr=new WeakMap;function tt(e){let t=Zr.get(e);if(t)return t;let r=new Xn,n={},a;for(let o in e.propTypes){let s=e.propTypes[o];if(s===void 0)throw new Error(`Property ${o} is undefined in struct`);let i=r.size;w(r,Q(e)?M(s):A(s)),a&&(a.padding=r.size-i);let p=c(s);n[o]={offset:r.size,size:p},a=n[o],r.add(p)}return a&&(a.padding=V(c(e),A(e))-r.size),Zr.set(e,n),n}var nt=(()=>{try{return new Function("return true"),!0}catch{return!1}})(),Nt=new WeakMap,jt={u32:"u32",vec2u:"u32",vec3u:"u32",vec4u:"u32",i32:"i32",vec2i:"i32",vec3i:"i32",vec4i:"i32",f32:"f32",vec2f:"f32",vec3f:"f32",vec4f:"f32",vec2h:"f32",vec3h:"f32",vec4h:"f32",mat2x2f:"f32",mat3x3f:"f32",mat4x4f:"f32"},zt={u32:"setUint32",i32:"setInt32",f32:"setFloat32"};function rt(e,t,r){if(Lr(e)||ce(e))return rt(e.inner,t,r);if(h(e)||Q(e)){let a=tt(e),o=Object.entries(a).sort((i,p)=>i[1].offset-p[1].offset),s="";for(let[i,p]of o){let u=e.propTypes[i];u&&(s+=rt(u,`(${t} + ${p.offset})`,`${r}.${i}`))}return s}if(W(e)||Xe(e)){let a=e,o=V(c(a.elementType),A(a.elementType)),s="";return s+=`for (let i = 0; i < ${a.elementCount}; i++) {
10
+ `,s+=rt(a.elementType,`(${t} + i * ${o})`,`${r}[i]`),s+=`}
11
+ `,s}if(Rr(e)){let a=jt[e.type],o="",s=zt[a],i=["x","y","z","w"],p=Ir(e)?2:Br(e)?3:4;for(let u=0;u<p;u++)o+=`output.${s}((${t} + ${u*4}), ${r}.${i[u]}, littleEndian);
12
+ `;return o}if(Qe(e)){let a=jt[e.type],o=zt[a],s=_r(e)?2:Pr(e)?3:4,i=s*s,p=V(s*4,8),u="";for(let d=0;d<i;d++){let m=Math.floor(d/s),T=d%s,f=m*p+T*4;u+=`output.${o}((${t} + ${f}), ${r}.columns[${m}].${["x","y","z","w"][T]}, littleEndian);
13
+ `}return u}let n=jt[e.type];return`output.${zt[n]}(${t}, ${r}, littleEndian);
14
+ `}function at(e){if(Nt.has(e))return Nt.get(e);let t=rt(e,"offset","value"),r=new Function("output","offset","value","littleEndian=true",t);return Nt.set(e,r),r}var ve={bool(){throw new Error("Booleans are not host-shareable")},f32(e,t,r){e.writeFloat32(r)},f16(e,t,r){e.writeFloat16(r)},i32(e,t,r){e.writeInt32(r)},u32(e,t,r){e.writeUint32(r)},vec2f(e,t,r){e.writeFloat32(r.x),e.writeFloat32(r.y)},vec2h(e,t,r){e.writeFloat16(r.x),e.writeFloat16(r.y)},vec2i(e,t,r){e.writeInt32(r.x),e.writeInt32(r.y)},vec2u(e,t,r){e.writeUint32(r.x),e.writeUint32(r.y)},"vec2<bool>"(){throw new Error("Booleans are not host-shareable")},vec3f(e,t,r){e.writeFloat32(r.x),e.writeFloat32(r.y),e.writeFloat32(r.z)},vec3h(e,t,r){e.writeFloat16(r.x),e.writeFloat16(r.y),e.writeFloat16(r.z)},vec3i(e,t,r){e.writeInt32(r.x),e.writeInt32(r.y),e.writeInt32(r.z)},vec3u(e,t,r){e.writeUint32(r.x),e.writeUint32(r.y),e.writeUint32(r.z)},"vec3<bool>"(){throw new Error("Booleans are not host-shareable")},vec4f(e,t,r){e.writeFloat32(r.x),e.writeFloat32(r.y),e.writeFloat32(r.z),e.writeFloat32(r.w)},vec4h(e,t,r){e.writeFloat16(r.x),e.writeFloat16(r.y),e.writeFloat16(r.z),e.writeFloat16(r.w)},vec4i(e,t,r){e.writeInt32(r.x),e.writeInt32(r.y),e.writeInt32(r.z),e.writeInt32(r.w)},vec4u(e,t,r){e.writeUint32(r.x),e.writeUint32(r.y),e.writeUint32(r.z),e.writeUint32(r.w)},"vec4<bool>"(){throw new Error("Booleans are not host-shareable")},mat2x2f(e,t,r){for(let n=0;n<r.length;++n)e.writeFloat32(r[n])},mat3x3f(e,t,r){for(let n=0;n<r.length;++n)e.writeFloat32(r[n])},mat4x4f(e,t,r){for(let n=0;n<r.length;++n)e.writeFloat32(r[n])},struct(e,t,r){let n=A(t);w(e,n);for(let[a,o]of Object.entries(t.propTypes))w(e,A(o)),Z(e,o,r[a]);w(e,n)},array(e,t,r){if(t.elementCount===0)throw new Error("Cannot write using a runtime-sized schema.");let n=A(t);w(e,n);let a=e.currentByteOffset;for(let o=0;o<Math.min(t.elementCount,r.length);o++)w(e,n),Z(e,t.elementType,r[o]);e.seekTo(a+c(t))},ptr(){throw new Error("Pointers are not host-shareable")},atomic(e,t,r){ve[t.inner.type]?.(e,t,r)},decorated(e,t,r){let n=M(t);w(e,n);let a=e.currentByteOffset;ve[t.inner?.type]?.(e,t.inner,r),e.seekTo(a+c(t))},uint8(e,t,r){e.writeUint8(r)},uint8x2(e,t,r){e.writeUint8(r.x),e.writeUint8(r.y)},uint8x4(e,t,r){e.writeUint8(r.x),e.writeUint8(r.y),e.writeUint8(r.z),e.writeUint8(r.w)},sint8(e,t,r){e.writeInt8(r)},sint8x2(e,t,r){e.writeInt8(r.x),e.writeInt8(r.y)},sint8x4(e,t,r){e.writeInt8(r.x),e.writeInt8(r.y),e.writeInt8(r.z),e.writeInt8(r.w)},unorm8(e,t,r){e.writeUint8(r*255)},unorm8x2(e,t,r){e.writeUint8(r.x*255),e.writeUint8(r.y*255)},unorm8x4(e,t,r){e.writeUint8(r.x*255),e.writeUint8(r.y*255),e.writeUint8(r.z*255),e.writeUint8(r.w*255)},snorm8(e,t,r){e.writeUint8(r*127+128)},snorm8x2(e,t,r){e.writeUint8(r.x*127+128),e.writeUint8(r.y*127+128)},snorm8x4(e,t,r){e.writeUint8(r.x*127+128),e.writeUint8(r.y*127+128),e.writeUint8(r.z*127+128),e.writeUint8(r.w*127+128)},uint16(e,t,r){e.writeUint16(r)},uint16x2(e,t,r){e.writeUint16(r.x),e.writeUint16(r.y)},uint16x4(e,t,r){e.writeUint16(r.x),e.writeUint16(r.y),e.writeUint16(r.z),e.writeUint16(r.w)},sint16(e,t,r){e.writeInt16(r)},sint16x2(e,t,r){e.writeInt16(r.x),e.writeInt16(r.y)},sint16x4(e,t,r){e.writeInt16(r.x),e.writeInt16(r.y),e.writeInt16(r.z),e.writeInt16(r.w)},unorm16(e,t,r){e.writeUint16(r*65535)},unorm16x2(e,t,r){e.writeUint16(r.x*65535),e.writeUint16(r.y*65535)},unorm16x4(e,t,r){e.writeUint16(r.x*65535),e.writeUint16(r.y*65535),e.writeUint16(r.z*65535),e.writeUint16(r.w*65535)},snorm16(e,t,r){e.writeUint16(r*32767+32768)},snorm16x2(e,t,r){e.writeUint16(r.x*32767+32768),e.writeUint16(r.y*32767+32768)},snorm16x4(e,t,r){e.writeUint16(r.x*32767+32768),e.writeUint16(r.y*32767+32768),e.writeUint16(r.z*32767+32768),e.writeUint16(r.w*32767+32768)},float16(e,t,r){e.writeFloat16(r)},float16x2(e,t,r){e.writeFloat16(r.x),e.writeFloat16(r.y)},float16x4(e,t,r){e.writeFloat16(r.x),e.writeFloat16(r.y),e.writeFloat16(r.z),e.writeFloat16(r.w)},float32(e,t,r){e.writeFloat32(r)},float32x2(e,t,r){e.writeFloat32(r.x),e.writeFloat32(r.y)},float32x3(e,t,r){e.writeFloat32(r.x),e.writeFloat32(r.y),e.writeFloat32(r.z)},float32x4(e,t,r){e.writeFloat32(r.x),e.writeFloat32(r.y),e.writeFloat32(r.z),e.writeFloat32(r.w)},uint32(e,t,r){e.writeUint32(r)},uint32x2(e,t,r){e.writeUint32(r.x),e.writeUint32(r.y)},uint32x3(e,t,r){e.writeUint32(r.x),e.writeUint32(r.y),e.writeUint32(r.z)},uint32x4(e,t,r){e.writeUint32(r.x),e.writeUint32(r.y),e.writeUint32(r.z),e.writeUint32(r.w)},sint32(e,t,r){e.writeInt32(r)},sint32x2(e,t,r){e.writeInt32(r.x),e.writeInt32(r.y)},sint32x3(e,t,r){e.writeInt32(r.x),e.writeInt32(r.y),e.writeInt32(r.z)},sint32x4(e,t,r){e.writeInt32(r.x),e.writeInt32(r.y),e.writeInt32(r.z),e.writeInt32(r.w)},"unorm10-10-10-2"(e,t,r){let n=0;n|=(r.x*1023&1023)<<22,n|=(r.x*1023&1023)<<12,n|=(r.y*1023&1023)<<2,n|=r.z*3&3,e.writeUint32(n)},"unorm8x4-bgra"(e,t,r){e.writeUint8(r.z*255),e.writeUint8(r.y*255),e.writeUint8(r.x*255),e.writeUint8(r.w*255)},disarray(e,t,r){let n=A(t);w(e,n);let a=e.currentByteOffset;for(let o=0;o<Math.min(t.elementCount,r.length);o++)w(e,n),ve[t.elementType?.type]?.(e,t.elementType,r[o]);e.seekTo(a+c(t))},unstruct(e,t,r){for(let[n,a]of Object.entries(t.propTypes))ve[a.type]?.(e,a,r[n])},"loose-decorated"(e,t,r){let n=M(t);w(e,n);let a=e.currentByteOffset,o=ve[t.inner?.type];return o?.(e,t.inner,r),e.seekTo(a+c(t)),r}};function Z(e,t,r){let n=ve[t.type];if(!n)throw new Error(`Cannot write data of type '${t.type}'.`);n(e,t,r)}var le={bool(){throw new Error("Booleans are not host-shareable")},f32(e){return e.readFloat32()},f16(e){return e.readFloat16()},i32(e){return e.readInt32()},u32(e){return e.readUint32()},vec2f(e){return C(e.readFloat32(),e.readFloat32())},vec3f(e){return ie(e.readFloat32(),e.readFloat32(),e.readFloat32())},vec4f(e){return b(e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32())},vec2h(e){return _e(e.readFloat16(),e.readFloat16())},vec3h(e){return Pe(e.readFloat16(),e.readFloat16(),e.readFloat16())},vec4h(e){return Le(e.readFloat16(),e.readFloat16(),e.readFloat16(),e.readFloat16())},vec2i(e){return J(e.readInt32(),e.readInt32())},vec3i(e){return fe(e.readInt32(),e.readInt32(),e.readInt32())},vec4i(e){return _(e.readInt32(),e.readInt32(),e.readInt32(),e.readInt32())},vec2u(e){return Y(e.readUint32(),e.readUint32())},vec3u(e){return Te(e.readUint32(),e.readUint32(),e.readUint32())},vec4u(e){return P(e.readUint32(),e.readUint32(),e.readUint32(),e.readUint32())},"vec2<bool>"(){throw new Error("Booleans are not host-shareable")},"vec3<bool>"(){throw new Error("Booleans are not host-shareable")},"vec4<bool>"(){throw new Error("Booleans are not host-shareable")},mat2x2f(e){return He(e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32())},mat3x3f(e){let t=()=>{let r=e.readFloat32();return e.readFloat32(),r};return Je(e.readFloat32(),e.readFloat32(),t(),e.readFloat32(),e.readFloat32(),t(),e.readFloat32(),e.readFloat32(),t())},mat4x4f(e){return Ye(e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32())},struct(e,t){let r=A(t);w(e,r);let n={};for(let[a,o]of Object.entries(t.propTypes))w(e,A(o)),n[a]=O(e,o);return w(e,r),n},array(e,t){if(t.elementCount===0)throw new Error("Cannot read using a runtime-sized schema.");let r=A(t),n=[];for(let a=0;a<t.elementCount;a++){w(e,r);let o=t.elementType,s=O(e,o);n.push(s)}return w(e,r),n},ptr(){throw new Error("Pointers are not host-shareable")},atomic(e,t){return O(e,t.inner)},decorated(e,t){let r=M(t);w(e,r);let n=e.currentByteOffset,a=O(e,t.inner);return e.seekTo(n+c(t)),a},uint8:e=>e.readUint8(),uint8x2:e=>Y(e.readUint8(),e.readUint8()),uint8x4:e=>P(e.readUint8(),e.readUint8(),e.readUint8(),e.readUint8()),sint8:e=>e.readInt8(),sint8x2:e=>J(e.readInt8(),e.readInt8()),sint8x4:e=>_(e.readInt8(),e.readInt8(),e.readInt8(),e.readInt8()),unorm8:e=>e.readUint8()/255,unorm8x2:e=>C(e.readUint8()/255,e.readUint8()/255),unorm8x4:e=>b(e.readUint8()/255,e.readUint8()/255,e.readUint8()/255,e.readUint8()/255),snorm8:e=>(e.readUint8()-128)/127,snorm8x2:e=>C((e.readUint8()-128)/127,(e.readUint8()-128)/127),snorm8x4:e=>b((e.readUint8()-128)/127,(e.readUint8()-128)/127,(e.readUint8()-128)/127,(e.readUint8()-128)/127),uint16:e=>e.readUint16(),uint16x2:e=>Y(e.readUint16(),e.readUint16()),uint16x4:e=>P(e.readUint16(),e.readUint16(),e.readUint16(),e.readUint16()),sint16:e=>e.readInt16(),sint16x2:e=>J(e.readInt16(),e.readInt16()),sint16x4:e=>_(e.readInt16(),e.readInt16(),e.readInt16(),e.readInt16()),unorm16:e=>e.readUint16()/65535,unorm16x2:e=>C(e.readUint16()/65535,e.readUint16()/65535),unorm16x4:e=>b(e.readUint16()/65535,e.readUint16()/65535,e.readUint16()/65535,e.readUint16()/65535),snorm16:e=>(e.readUint16()-32768)/32767,snorm16x2:e=>C(le.snorm16(e),le.snorm16(e)),snorm16x4:e=>b(le.snorm16(e),le.snorm16(e),le.snorm16(e),le.snorm16(e)),float16(e){return e.readFloat16()},float16x2:e=>C(e.readFloat16(),e.readFloat16()),float16x4:e=>b(e.readFloat16(),e.readFloat16(),e.readFloat16(),e.readFloat16()),float32:e=>e.readFloat32(),float32x2:e=>C(e.readFloat32(),e.readFloat32()),float32x3:e=>ie(e.readFloat32(),e.readFloat32(),e.readFloat32()),float32x4:e=>b(e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32()),uint32:e=>e.readUint32(),uint32x2:e=>Y(e.readUint32(),e.readUint32()),uint32x3:e=>Te(e.readUint32(),e.readUint32(),e.readUint32()),uint32x4:e=>P(e.readUint32(),e.readUint32(),e.readUint32(),e.readUint32()),sint32:e=>e.readInt32(),sint32x2:e=>J(e.readInt32(),e.readInt32()),sint32x3:e=>fe(e.readInt32(),e.readInt32(),e.readInt32()),sint32x4:e=>_(e.readInt32(),e.readInt32(),e.readInt32(),e.readInt32()),"unorm10-10-10-2"(e){let t=e.readUint32(),r=(t>>22)/1023,n=(t>>12&1023)/1023,a=(t>>2&1023)/1023,o=(t&3)/3;return b(r,n,a,o)},"unorm8x4-bgra"(e){let t=e.readByte()/255,r=e.readByte()/255,n=e.readByte()/255,a=e.readByte()/255;return b(n,r,t,a)},unstruct(e,t){let r={};for(let[n,a]of Object.entries(t.propTypes))r[n]=O(e,a);return r},disarray(e,t){let r=A(t),n=[];for(let a=0;a<t.elementCount;a++)w(e,r),n.push(O(e,t.elementType));return w(e,r),n},"loose-decorated"(e,t){w(e,M(t));let r=e.currentByteOffset,n=O(e,t.inner);return e.seekTo(r+c(t)),n}};function O(e,t){let r=le[t.type];if(!r)throw new Error(`Cannot read data of type '${t.type}'.`);return r(e,t)}import{BufferWriter as ea}from"typed-binary";function en(e,t){let r=c(e);if(r===0||t===void 0||t===null)return[];let n=new ArrayBuffer(r),a=new ea(n),o=[];function s(u,d,m,T){if(d!=null){if(h(u)||Q(u)){let f=tt(u);for(let[g,F]of Object.entries(f)){let S=u.propTypes[g];if(!S)continue;let B=d[g];B!==void 0&&s(S,B,m+F.offset,F.padding??T)}return}if(W(u)||Xe(u)){let f=u,g=V(c(f.elementType),A(f.elementType));if(!Array.isArray(d))throw new Error("Partial value for array must be an array");let F=d;F.sort((S,B)=>S.idx-B.idx);for(let{idx:S,value:B}of F)s(f.elementType,B,m+S*g,g-c(f.elementType))}else{let f=c(u);a.seekTo(m),Z(a,u,d),o.push({start:m,end:m+f,padding:T})}}}if(s(e,t,0),o.length===0)return[];let i=[],p=o[0];for(let u=1;u<o.length;u++){let d=o[u];if(!d||!p)throw new Error("Internal error: missing segment");d.start===p.end+(p.padding??0)?(p.end=d.end,p.padding=d.padding):(i.push({data:new Uint8Array(n,p.start,p.end-p.start)}),p=d)}if(!p)throw new Error("Internal error: missing segment");return i.push({data:new Uint8Array(n,p.start,p.end-p.start)}),i}function de(e){return!!e?.usableAsStorage}var Oe=class e extends Error{constructor(t){super(`Resource '${t.label??"<unnamed>"}' cannot be bound as 'storage'. Use .$usage('storage') to allow it.`),Object.setPrototypeOf(this,e.prototype)}};function ot(e){return!!e.usableAsUniform}var an={uniform:"uniform",mutable:"storage, read_write",readonly:"storage, read"},Ge=class{constructor(t,r){this.usage=t;this.buffer=r;this[y]={dataType:r.dataType}}resourceType="buffer-usage";[y];get label(){return this.buffer.label}$name(t){return this.buffer.$name(t),this}"~resolve"(t){let r=t.names.makeUnique(this.label),{group:n,binding:a}=t.allocateFixedEntry(this.usage==="uniform"?{uniform:this.buffer.dataType}:{storage:this.buffer.dataType,access:this.usage},this.buffer),o=an[this.usage];return t.addDeclaration(`@group(${n}) @binding(${a}) var<${o}> ${r}: ${t.resolve(this.buffer.dataType)};`),r}write(t){this.buffer.write(t)}toString(){return`${this.usage}:${this.label??"<unnamed>"}`}get value(){if(!se())throw new Error("Cannot access buffer's value directly in JS.");return new Proxy({"~resolve":t=>t.resolve(this),toString:()=>`.value:${this.label??"<unnamed>"}`,[y]:{dataType:this.buffer.dataType}},N)}},We=class{constructor(t,r,n){this.usage=t;this.dataType=r;this._membership=n;this[y]={dataType:r}}resourceType="buffer-usage";[y];get label(){return this._membership.key}"~resolve"(t){let r=t.names.makeUnique(this.label),n=t.allocateLayoutEntry(this._membership.layout),a=an[this.usage];return t.addDeclaration(`@group(${n}) @binding(${this._membership.idx}) var<${a}> ${r}: ${t.resolve(this.dataType)};`),r}toString(){return`${this.usage}:${this.label??"<unnamed>"}`}get value(){if(!se())throw new Error("Cannot access buffer's value directly in JS.");return new Proxy({"~resolve":t=>t.resolve(this),toString:()=>`.value:${this.label??"<unnamed>"}`,[y]:{dataType:this.dataType}},N)}},tn=new WeakMap;function Kt(e){if(!de(e))throw new Error(`Cannot pass ${e} to asMutable, as it is not allowed to be used as storage. To allow it, call .$usage('storage') when creating the buffer.`);let t=tn.get(e);return t||(t=new Ge("mutable",e),tn.set(e,t)),t}var rn=new WeakMap;function qt(e){if(!de(e))throw new Error(`Cannot pass ${e} to asReadonly, as it is not allowed to be used as storage. To allow it, call .$usage('storage') when creating the buffer.`);let t=rn.get(e);return t||(t=new Ge("readonly",e),rn.set(e,t)),t}var nn=new WeakMap;function Ht(e){if(!ot(e))throw new Error(`Cannot pass ${e} to asUniform, as it is not allowed to be used as a uniform. To allow it, call .$usage('uniform') when creating the buffer.`);let t=nn.get(e);return t||(t=new Ge("uniform",e),nn.set(e,t)),t}var ra={uniform:Ht,mutable:Kt,readonly:qt};function sn(e,t,r){return E(t)?new st(e,t,r):new st(e,t,r,["storage","uniform"])}function ee(e){return e.resourceType==="buffer"}function na(e){return!!e.usableAsVertex}var on=ta(),st=class{constructor(t,r,n,a){this._group=t;this.dataType=r;this.initialOrBuffer=n;this._disallowedUsages=a;kr(n)?(this._ownBuffer=!1,this._buffer=n):(this._ownBuffer=!0,this.initial=n)}resourceType="buffer";flags=GPUBufferUsage.COPY_DST|GPUBufferUsage.COPY_SRC;_buffer=null;_ownBuffer;_destroyed=!1;_hostBuffer;_label;initial;usableAsUniform=!1;usableAsStorage=!1;usableAsVertex=!1;get label(){return this._label}get buffer(){let t=this._group.device;if(this._destroyed)throw new Error("This buffer has been destroyed");if(!this._buffer&&(this._buffer=t.createBuffer({size:c(this.dataType),usage:this.flags,mappedAtCreation:!!this.initial,label:this.label??"<unnamed>"}),this.initial)){let r=new Yt(this._buffer.getMappedRange());Z(r,this.dataType,this.initial),this._buffer.unmap()}return this._buffer}get destroyed(){return this._destroyed}$name(t){return this._label=t,this._buffer&&(this._buffer.label=t),this}$usage(...t){for(let r of t){if(this._disallowedUsages?.includes(r))throw new Error(`Buffer of type ${this.dataType.type} cannot be used as ${r}`);this.flags|=r==="uniform"?GPUBufferUsage.UNIFORM:0,this.flags|=r==="storage"?GPUBufferUsage.STORAGE:0,this.flags|=r==="vertex"?GPUBufferUsage.VERTEX:0,this.usableAsUniform=this.usableAsUniform||r==="uniform",this.usableAsStorage=this.usableAsStorage||r==="storage",this.usableAsVertex=this.usableAsVertex||r==="vertex"}return this}$addFlags(t){if(!this._ownBuffer)throw new Error("Cannot add flags to a buffer that is not managed by TypeGPU.");return t&GPUBufferUsage.MAP_READ?(this.flags=GPUBufferUsage.COPY_DST|GPUBufferUsage.MAP_READ,this):t&GPUBufferUsage.MAP_WRITE?(this.flags=GPUBufferUsage.COPY_SRC|GPUBufferUsage.MAP_WRITE,this):(this.flags|=t,this)}compileWriter(){if(nt)at(this.dataType);else throw new Error("This environment does not allow eval")}write(t){let r=this.buffer,n=this._group.device;if(r.mapState==="mapped"){let o=r.getMappedRange();if(nt){at(this.dataType)(new DataView(o),0,t,on==="little");return}Z(new Yt(o),this.dataType,t);return}let a=c(this.dataType);this._hostBuffer||(this._hostBuffer=new ArrayBuffer(a)),this._group.flush(),nt?at(this.dataType)(new DataView(this._hostBuffer),0,t,on==="little"):Z(new Yt(this._hostBuffer),this.dataType,t),n.queue.writeBuffer(r,0,this._hostBuffer,0,a)}writePartial(t){let r=this.buffer,n=this._group.device,a=en(this.dataType,t);if(r.mapState==="mapped"){let o=r.getMappedRange(),s=new Uint8Array(o);for(let i of a)s.set(i.data,i.data.byteOffset)}else for(let o of a)n.queue.writeBuffer(r,o.data.byteOffset,o.data,0,o.data.byteLength)}copyFrom(t){if(this.buffer.mapState==="mapped")throw new Error("Cannot copy to a mapped buffer.");let r=c(this.dataType);this._group.commandEncoder.copyBufferToBuffer(t.buffer,0,this.buffer,0,r)}async read(){this._group.flush();let t=this.buffer,r=this._group.device;if(t.mapState==="mapped"){let s=t.getMappedRange();return O(new Jt(s),this.dataType)}if(t.usage&GPUBufferUsage.MAP_READ){await t.mapAsync(GPUMapMode.READ);let s=t.getMappedRange(),i=O(new Jt(s),this.dataType);return t.unmap(),i}let n=r.createBuffer({size:c(this.dataType),usage:GPUBufferUsage.COPY_DST|GPUBufferUsage.MAP_READ}),a=r.createCommandEncoder();a.copyBufferToBuffer(t,0,n,0,c(this.dataType)),r.queue.submit([a.finish()]),await r.queue.onSubmittedWorkDone(),await n.mapAsync(GPUMapMode.READ,0,c(this.dataType));let o=O(new Jt(n.getMappedRange()),this.dataType);return n.unmap(),n.destroy(),o}as(t){return ra[t]?.(this)}destroy(){this._destroyed||(this._destroyed=!0,this._ownBuffer&&this._buffer?.destroy())}toString(){return`buffer:${this._label??"<unnamed>"}`}};function un(e){return new Qt(e)}function pn(e){return new Xt(e)}function Me(e){return e?.resourceType==="sampler"}function Ne(e){return e?.resourceType==="sampler-comparison"}var it=class{constructor(t){this._membership=t}resourceType="sampler";get label(){return this._membership.key}"~resolve"(t){let r=t.names.makeUnique(this.label),n=t.allocateLayoutEntry(this._membership.layout);return t.addDeclaration(`@group(${n}) @binding(${this._membership.idx}) var ${r}: sampler;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}},ut=class{constructor(t){this._membership=t}resourceType="sampler-comparison";get label(){return this._membership.key}"~resolve"(t){let r=t.names.makeUnique(this.label),n=t.allocateLayoutEntry(this._membership.layout);return t.addDeclaration(`@group(${n}) @binding(${this._membership.idx}) var ${r}: sampler_comparison;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}},Qt=class{constructor(t){this._props=t;this._filtering=t.minFilter==="linear"||t.magFilter==="linear"||t.mipmapFilter==="linear"}resourceType="sampler";_label;_filtering;_sampler=null;unwrap(t){return this._sampler||(this._sampler=t.device.createSampler({...this._props,label:this._label??"<unnamed>"})),this._sampler}get label(){return this._label}$name(t){return this._label=t,this}"~resolve"(t){let r=t.names.makeUnique(this._label),{group:n,binding:a}=t.allocateFixedEntry({sampler:this._filtering?"filtering":"non-filtering"},this);return t.addDeclaration(`@group(${n}) @binding(${a}) var ${r}: sampler;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}},Xt=class{constructor(t){this._props=t}resourceType="sampler-comparison";_label;_sampler=null;unwrap(t){return this._sampler||(this._sampler=t.device.createSampler({...this._props,label:this._label??"<unnamed>"})),this._sampler}get label(){return this._label}$name(t){return this._label=t,this}"~resolve"(t){let r=t.names.makeUnique(this.label),{group:n,binding:a}=t.allocateFixedEntry({sampler:"comparison"},this);return t.addDeclaration(`@group(${n}) @binding(${a}) var ${r}: sampler_comparison;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}};var pt=class{constructor(t){this._membership=t}resourceType="external-texture";get label(){return this._membership.key}"~resolve"(t){let r=t.names.makeUnique(this.label),n=t.allocateLayoutEntry(this._membership.layout);return t.addDeclaration(`@group(${n}) @binding(${this._membership.idx}) var ${r}: texture_external;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}};var ln={r8unorm:l,r8snorm:l,r8uint:v,r8sint:R,r16uint:v,r16sint:R,r16float:l,rg8unorm:l,rg8snorm:l,rg8uint:v,rg8sint:R,r32uint:v,r32sint:R,r32float:l,rg16uint:v,rg16sint:R,rg16float:l,rgba8unorm:l,"rgba8unorm-srgb":l,rgba8snorm:l,rgba8uint:v,rgba8sint:R,bgra8unorm:l,"bgra8unorm-srgb":l,rgb9e5ufloat:l,rgb10a2uint:v,rgb10a2unorm:l,rg11b10ufloat:l,rg32uint:v,rg32sint:R,rg32float:l,rgba16uint:v,rgba16sint:R,rgba16float:l,rgba32uint:v,rgba32sint:R,rgba32float:l,stencil8:l,depth16unorm:l,depth24plus:l,"depth24plus-stencil8":l,depth32float:l,"depth32float-stencil8":l,"bc1-rgba-unorm":l,"bc1-rgba-unorm-srgb":l,"bc2-rgba-unorm":l,"bc2-rgba-unorm-srgb":l,"bc3-rgba-unorm":l,"bc3-rgba-unorm-srgb":l,"bc4-r-unorm":l,"bc4-r-snorm":l,"bc5-rg-unorm":l,"bc5-rg-snorm":l,"bc6h-rgb-ufloat":l,"bc6h-rgb-float":l,"bc7-rgba-unorm":l,"bc7-rgba-unorm-srgb":l,"etc2-rgb8unorm":l,"etc2-rgb8unorm-srgb":l,"etc2-rgb8a1unorm":l,"etc2-rgb8a1unorm-srgb":l,"etc2-rgba8unorm":l,"etc2-rgba8unorm-srgb":l,"eac-r11unorm":l,"eac-r11snorm":l,"eac-rg11unorm":l,"eac-rg11snorm":l,"astc-4x4-unorm":l,"astc-4x4-unorm-srgb":l,"astc-5x4-unorm":l,"astc-5x4-unorm-srgb":l,"astc-5x5-unorm":l,"astc-5x5-unorm-srgb":l,"astc-6x5-unorm":l,"astc-6x5-unorm-srgb":l,"astc-6x6-unorm":l,"astc-6x6-unorm-srgb":l,"astc-8x5-unorm":l,"astc-8x5-unorm-srgb":l,"astc-8x6-unorm":l,"astc-8x6-unorm-srgb":l,"astc-8x8-unorm":l,"astc-8x8-unorm-srgb":l,"astc-10x5-unorm":l,"astc-10x5-unorm-srgb":l,"astc-10x6-unorm":l,"astc-10x6-unorm-srgb":l,"astc-10x8-unorm":l,"astc-10x8-unorm-srgb":l,"astc-10x10-unorm":l,"astc-10x10-unorm-srgb":l,"astc-12x10-unorm":l,"astc-12x10-unorm-srgb":l,"astc-12x12-unorm":l,"astc-12x12-unorm-srgb":l},je={rgba8unorm:b,rgba8snorm:b,rgba8uint:P,rgba8sint:_,rgba16uint:P,rgba16sint:_,rgba16float:b,r32uint:P,r32sint:_,r32float:b,rg32uint:P,rg32sint:_,rg32float:b,rgba32uint:P,rgba32sint:_,rgba32float:b,bgra8unorm:b},dn={f32:"float",u32:"uint",i32:"sint"},mn={float:l,"unfilterable-float":l,uint:v,sint:R,depth:l};function gn(e,t){return new Zt(e,t)}function H(e){return e?.resourceType==="texture"}function ze(e){return e?.resourceType==="texture-storage-view"}function Ke(e){return e?.resourceType==="texture-sampled-view"}var fn={mutable:"read_write",readonly:"read",writeonly:"write"},Zt=class{constructor(t,r){this.props=t;this._branch=r}resourceType="texture";usableAsSampled=!1;usableAsStorage=!1;usableAsRender=!1;_destroyed=!1;_label;_flags=GPUTextureUsage.COPY_DST|GPUTextureUsage.COPY_SRC;_texture=null;get label(){return this._label}$name(t){return this._label=t,this}unwrap(){if(this._destroyed)throw new Error("This texture has been destroyed");return this._texture||(this._texture=this._branch.device.createTexture({label:this._label??"<unnamed>",format:this.props.format,size:this.props.size,usage:this._flags,dimension:this.props.dimension??"2d",viewFormats:this.props.viewFormats??[],mipLevelCount:this.props.mipLevelCount??1,sampleCount:this.props.sampleCount??1})),this._texture}$usage(...t){let r=t.includes("storage"),n=t.includes("sampled"),a=t.includes("render");return this._flags|=n?GPUTextureUsage.TEXTURE_BINDING:0,this._flags|=r?GPUTextureUsage.STORAGE_BINDING:0,this._flags|=a?GPUTextureUsage.RENDER_ATTACHMENT:0,this.usableAsStorage||=r,this.usableAsSampled||=n,this.usableAsRender||=a,this}createView(t,r){if(t==="sampled")return this._asSampled(r);let n=r;switch(t){case"mutable":return this._asMutable(n);case"readonly":return this._asReadonly(n);case"writeonly":return this._asWriteonly(n)}}_asStorage(t,r){if(!this.usableAsStorage)throw new Error("Unusable as storage");let n=t?.format??this.props.format,a=je[n];return Ie(!!a,`Unsupported storage texture format: ${n}`),new er(t??{},r,this)}_asReadonly(t){return this._asStorage(t,"readonly")}_asWriteonly(t){return this._asStorage(t,"writeonly")}_asMutable(t){return this._asStorage(t,"mutable")}_asSampled(t){if(!this.usableAsSampled)throw new Error("Unusable as sampled");let r=t?.format??this.props.format;if(!je[r])throw new Error(`Unsupported storage texture format: ${r}`);return new tr(t,this)}destroy(){this._destroyed||(this._destroyed=!0,this._texture?.destroy())}},mt={"1d":"1d","2d":"2d","2d-array":"2d_array",cube:"cube","cube-array":"cube_array","3d":"3d"},er=class{constructor(t,r,n){this.access=r;this._texture=n;this.dimension=t?.dimension??n.props.dimension??"2d",this._format=t?.format??n.props.format,this.texelDataType=je[this._format]}resourceType="texture-storage-view";texelDataType;dimension;_view;_format;get label(){return this._texture.label}$name(t){return this._texture.$name(t),this}unwrap(){return this._view||(this._view=this._texture.unwrap().createView({label:`${this.label??"<unnamed>"} - View`,format:this._format,dimension:this.dimension})),this._view}"~resolve"(t){let r=t.names.makeUnique(this.label),{group:n,binding:a}=t.allocateFixedEntry({storageTexture:this._format,access:this.access,viewDimension:this.dimension},this),o=`texture_storage_${mt[this.dimension]}`;return t.addDeclaration(`@group(${n}) @binding(${a}) var ${r}: ${o}<${this._format}, ${fn[this.access]}>;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}},lt=class{constructor(t,r,n,a){this._format=t;this.dimension=r;this.access=n;this._membership=a;this.texelDataType=je[this._format]}resourceType="texture-storage-view";texelDataType;get label(){return this._membership.key}"~resolve"(t){let r=t.names.makeUnique(this.label),n=t.allocateLayoutEntry(this._membership.layout),a=`texture_storage_${mt[this.dimension]}`;return t.addDeclaration(`@group(${n}) @binding(${this._membership.idx}) var ${r}: ${a}<${this._format}, ${fn[this.access]}>;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}},tr=class{constructor(t,r){this._props=t;this._texture=r;this.dimension=t?.dimension??r.props.dimension??"2d",this._format=t?.format??r.props.format,this.channelDataType=ln[this._format]}resourceType="texture-sampled-view";channelDataType;dimension;_format;_view;get label(){return this._texture.label}$name(t){return this._texture.$name(t),this}unwrap(){return this._view||(this._view=this._texture.unwrap().createView({label:`${this.label??"<unnamed>"} - View`,...this._props})),this._view}"~resolve"(t){let r=t.names.makeUnique(this.label),n=(this._texture.props.sampleCount??1)>1,{group:a,binding:o}=t.allocateFixedEntry({texture:dn[this.channelDataType.type],viewDimension:this.dimension,multisampled:n},this),s=n?"texture_multisampled_2d":`texture_${mt[this.dimension]}`;return t.addDeclaration(`@group(${a}) @binding(${o}) var ${r}: ${s}<${t.resolve(this.channelDataType)}>;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}},dt=class{constructor(t,r,n,a){this.dimension=r;this._multisampled=n;this._membership=a;this.channelDataType=mn[t]}resourceType="texture-sampled-view";channelDataType;get label(){return this._membership.key}"~resolve"(t){let r=t.names.makeUnique(this.label),n=t.allocateLayoutEntry(this._membership.layout),a=this._multisampled?"texture_multisampled_2d":`texture_${mt[this.dimension]}`;return t.addDeclaration(`@group(${n}) @binding(${this._membership.idx}) var ${r}: ${a}<${t.resolve(this.channelDataType)}>;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}};function rr(e){return!!e?.usableAsSampled}function aa(e){return!!e?.usableAsRender}var gt=class e extends Error{constructor(t){super(`Resource '${t.label??"<unnamed>"}' cannot be bound as 'sampled'. Use .$usage('sampled') to allow it.`),Object.setPrototypeOf(this,e.prototype)}};function ft(e){return new ar(e)}function Tt(e){return!!e&&e.resourceType==="bind-group-layout"}function or(e){return!!e&&e.resourceType==="bind-group"}var nr=class e extends Error{constructor(t,r){super(`Bind group '${t??"<unnamed>"}' is missing a required binding '${r}'`),Object.setPrototypeOf(this,e.prototype)}},Tn=["compute"],De=["compute","vertex","fragment"],ar=class{constructor(t){this.entries=t;let r=0;for(let[n,a]of Object.entries(t)){if(a===null){r++;continue}let o={idx:r,key:n,layout:this};if("uniform"in a&&(this.bound[n]=new We("uniform",a.uniform,o)),"storage"in a){let s="type"in a.storage?a.storage:a.storage(0);this.bound[n]=new We(a.access??"readonly",s,o)}"texture"in a&&(this.bound[n]=new dt(a.texture,a.viewDimension??"2d",a.multisampled??!1,o)),"storageTexture"in a&&(this.bound[n]=new lt(a.storageTexture,a.viewDimension??"2d",a.access??"writeonly",o)),"externalTexture"in a&&(this.bound[n]=new pt(o)),"sampler"in a&&(a.sampler==="comparison"?this.bound[n]=new ut(o):this.bound[n]=new it(o)),"texture"in a||"storageTexture"in a||"externalTexture"in a||"sampler"in a?this.value[n]=this.bound[n]:Object.defineProperty(this.value,n,{get:()=>this.bound[n].value}),r++}}_label;_index;resourceType="bind-group-layout";bound={};value={};$=this.value;toString(){return`bindGroupLayout:${this._label??"<unnamed>"}`}get label(){return this._label}get index(){return this._index}$name(t){return this._label=t,this}$idx(t){return this._index=t,this}unwrap(t){return t.device.createBindGroupLayout({label:this.label??"<unnamed>",entries:Object.values(this.entries).map((n,a)=>{if(n===null)return null;let o=n.visibility,s={binding:a,visibility:0};if("uniform"in n)o=o??De,s.buffer={type:"uniform"};else if("storage"in n)o=o??(n.access==="mutable"?Tn:De),s.buffer={type:n.access==="mutable"?"storage":"read-only-storage"};else if("sampler"in n)o=o??De,s.sampler={type:n.sampler};else if("texture"in n)o=o??De,s.texture={sampleType:n.texture,viewDimension:n.viewDimension??"2d",multisampled:n.multisampled??!1};else if("storageTexture"in n){let i=n.access??"writeonly";o=o??(i==="readonly"?De:Tn),s.storageTexture={format:n.storageTexture,access:{mutable:"read-write",readonly:"read-only",writeonly:"write-only"}[i],viewDimension:n.viewDimension??"2d"}}else"externalTexture"in n&&(o=o??De,s.externalTexture={});return o?.includes("compute")&&(s.visibility|=GPUShaderStage.COMPUTE),o?.includes("vertex")&&(s.visibility|=GPUShaderStage.VERTEX),o?.includes("fragment")&&(s.visibility|=GPUShaderStage.FRAGMENT),s}).filter(n=>n!==null)})}},Fe=class{constructor(t,r){this.layout=t;this.entries=r;for(let n of Object.keys(t.entries))if(t.entries[n]!==null&&!(n in r))throw new nr(t.label,n)}resourceType="bind-group";unwrap(t){return t.device.createBindGroup({label:this.layout.label??"<unnamed>",layout:t.unwrap(this.layout),entries:Object.entries(this.layout.entries).map(([n,a],o)=>{if(a===null)return null;let s=this.entries[n];if(s===void 0)throw new Error(`'${n}' is a resource required to populate bind group layout '${this.layout.label??"<unnamed>"}'.`);if("uniform"in a){let i;if(ee(s)){if(!ot(s))throw new Ft(s);i={buffer:t.unwrap(s)}}else i={buffer:s};return{binding:o,resource:i}}if("storage"in a){let i;if(ee(s)){if(!de(s))throw new Oe(s);i={buffer:t.unwrap(s)}}else i={buffer:s};return{binding:o,resource:i}}if("texture"in a){let i;if(H(s)){if(!rr(s))throw new gt(s);i=t.unwrap(s.createView("sampled"))}else Ke(s)?i=t.unwrap(s):i=s;return{binding:o,resource:i}}if("storageTexture"in a){let i;if(H(s)){if(!de(s))throw new Oe(s);a.access==="readonly"?i=t.unwrap(s.createView("readonly")):a.access==="mutable"?i=t.unwrap(s.createView("mutable")):i=t.unwrap(s.createView("writeonly"))}else ze(s)?i=t.unwrap(s):i=s;return{binding:o,resource:i}}if("sampler"in a)return Me(s)||Ne(s)?{binding:o,resource:t.unwrap(s)}:{binding:o,resource:s};if("externalTexture"in a)return{binding:o,resource:s};throw new Error(`Malformed bind group entry: ${s} (${JSON.stringify(s)})`)}).filter(n=>n!==null)})}};import*as oa from"tinyest";var{NodeTypeCatalog:x}=oa,sa=["==","!=","<","<=",">",">=","<<",">>","+","-","*","/","%","|","^","&","&&","||"],ia=["&&","||","==","!=","<","<=",">",">="];function yn(e,t,r){return r?ia.includes(t)?G:t==="="?r:e:t==="!"||t==="~"?G:e}function D(e,t){return K(t.value)?e.resolve(t.value):String(t.value)}function ua(e){throw new Error(`'${JSON.stringify(e)}' was not handled by the WGSL generator.`)}function cn(e,t){return{value:t?"true":"false",dataType:G}}function xn(e,[t,r]){e.pushBlockScope();try{return`${e.indent()}{
15
+ ${r.map(n=>me(e,n)).join(`
11
16
  `)}
12
- ${e.dedent()}}`}finally{e.popBlockScope()}}function ta(e,t,r){return e.defineVariable(t,r)}function Wt(e,t){let r=e.getById(t);if(!r)throw new Error(`Identifier ${t} not found`);return r}function U(e,t){if(typeof t=="string")return Wt(e,t);if(typeof t=="boolean")return en(e,t);if("x"in t){let[r,n,a]=t.x,o=U(e,r),s=U(e,a),i=h(e,o),p=h(e,s),u=Zr(o.dataType,n,s.dataType);return{value:Xn.includes(n)?`(${i} ${n} ${p})`:`${i} ${n} ${p}`,dataType:u}}if("p"in t){let[r,n]=t.p,a=U(e,n);return{value:`${h(e,a)}${r}`,dataType:a.dataType}}if("u"in t){let[r,n]=t.u,a=U(e,n),o=h(e,a),s=Zr(a.dataType,r);return{value:`${r}${o}`,dataType:s}}if("a"in t){let[r,n]=t.a,a=U(e,r);if(typeof a.value=="string")return{value:`${a.value}.${n}`,dataType:_(a.dataType)?be(a.dataType,n):A};if(G(a.dataType)&&n==="length")return a.dataType.elementCount===0?{value:`arrayLength(&${e.resolve(a.value)})`,dataType:v}:{value:String(a.dataType.elementCount),dataType:Te};let o=a.value[n];if(a.dataType.type!=="unknown")return Ye(a.dataType)&&n==="columns"?{value:a.value,dataType:a.dataType}:{value:o,dataType:be(a.dataType,n)};if(z(a.value))return{value:o,dataType:be(a.value,n)};if(typeof a.value=="object"){let s=z(o)?he(o):A;return{value:o,dataType:s}}throw new Error(`Cannot access member ${n} of ${a.value}`)}if("i"in t){let[r,n]=t.i,a=U(e,r),o=U(e,n),s=h(e,a),i=h(e,o);return{value:`${s}[${i}]`,dataType:_(a.dataType)?Nr(a.dataType):A}}if("n"in t){let r=Et(t.n);if(!r)throw new Error(`Invalid numeric literal ${t.n}`);return r}if("f"in t){let[r,n]=t.f,a=U(e,r),o=a.value;e.callStack.push(o);let i=n.map(d=>U(e,d)).map(d=>({value:h(e,d),dataType:d.dataType})),p=i.map(d=>d.value);if(e.callStack.pop(),typeof o=="string")return{value:`${o}(${p.join(", ")})`,dataType:a.dataType};if(b(o))return{value:`${e.resolve(o)}(${p.join(", ")})`,dataType:a.dataType};if(!Gr(o))throw new Error(`Function ${String(o)} has not been created using TypeGPU APIs. Did you mean to wrap the function with tgpu.fn(args, return)(...) ?`);let u=o(...i);return{value:h(e,u),dataType:u.dataType}}if("o"in t){let r=t.o,n=e.callStack[e.callStack.length-1],a=o=>o.map(s=>{let i=U(e,s);return h(e,i)}).join(", ");if(b(n)){let s=Object.keys(n.propTypes).map(i=>{let p=r[i];if(p===void 0)throw new Error(`Missing property ${i} in object literal for struct ${n}`);return p});return{value:a(s),dataType:n}}return{value:a(Object.values(r)),dataType:A}}if("y"in t){let r=t.y.map(p=>U(e,p));if(r.length===0)throw new Error("Cannot create empty array literal.");let n=r[0]?.dataType,a=r.find(p=>p.dataType!==n);if(a)throw new Error(`Cannot mix types in array literal. Type ${a.dataType.type} does not match expected type ${n?.type}.`);if(!C(n))throw new Error("Cannot use non-WGSL data types in array literals.");n=n.type==="abstractInt"?v:n.type==="abstractFloat"?l:n;let s=`array<${e.resolve(n)}, ${r.length}>`,i=r.map(p=>h(e,p));return{value:`${s}( ${i.join(", ")} )`,dataType:kr(n,r.length)}}if("s"in t)throw new Error("Cannot use string literals in TGSL.");ea(t)}function pe(e,t){if(typeof t=="string")return`${e.pre}${h(e,Wt(e,t))};`;if(typeof t=="boolean")return`${e.pre}${h(e,en(e,t))};`;if("r"in t){if(b(e.callStack[e.callStack.length-1])&&t.r!==null&&typeof t.r=="object"&&"o"in t.r){let r=h(e,U(e,t.r)),n=e.resolve(e.callStack[e.callStack.length-1]);return`${e.pre}return ${n}(${r});`}return t.r===null?`${e.pre}return;`:`${e.pre}return ${h(e,U(e,t.r))};`}if("q"in t){let[r,n,a]=t.q,o=h(e,U(e,r));e.indent();let s=pe(e,n);e.dedent(),e.indent();let i=a?pe(e,a):void 0;return e.dedent(),i?`${e.pre}if (${o})
13
- ${s}
17
+ ${e.dedent()}}`}finally{e.popBlockScope()}}function pa(e,t,r){return e.defineVariable(t,r)}function sr(e,t){let r=e.getById(t);if(!r)throw new Error(`Identifier ${t} not found`);return r}function I(e,t){if(typeof t=="string")return sr(e,t);if(typeof t=="boolean")return cn(e,t);if(t[0]===x.logicalExpr||t[0]===x.binaryExpr||t[0]===x.assignmentExpr){let[r,n,a,o]=t,s=I(e,n),i=I(e,o),p=D(e,s),u=D(e,i),d=yn(s.dataType,a,i.dataType);return{value:sa.includes(a)?`(${p} ${a} ${u})`:`${p} ${a} ${u}`,dataType:d}}if(t[0]===x.postUpdate){let[r,n,a]=t,o=I(e,a);return{value:`${D(e,o)}${n}`,dataType:o.dataType}}if(t[0]===x.unaryExpr){let[r,n,a]=t,o=I(e,a),s=D(e,o),i=yn(o.dataType,n);return{value:`${n}${s}`,dataType:i}}if(t[0]===x.memberAccess){let[r,n,a]=t,o=I(e,n);if(typeof o.value=="string")return{value:`${o.value}.${a}`,dataType:L(o.dataType)?he(o.dataType,a):U};if(W(o.dataType)&&a==="length")return o.dataType.elementCount===0?{value:`arrayLength(&${e.resolve(o.value)})`,dataType:v}:{value:String(o.dataType.elementCount),dataType:ye};let s=o.value[a];if(o.dataType.type!=="unknown")return Qe(o.dataType)&&a==="columns"?{value:o.value,dataType:o.dataType}:{value:s,dataType:he(o.dataType,a)};if(K(o.value))return{value:s,dataType:he(o.value,a)};if(typeof o.value=="object"){let i=K(s)?we(s):U;return{value:s,dataType:i}}throw new Error(`Cannot access member ${a} of ${o.value}`)}if(t[0]===x.indexAccess){let[r,n,a]=t,o=I(e,n),s=I(e,a),i=D(e,o),p=D(e,s);return{value:`${i}[${p}]`,dataType:L(o.dataType)?Nr(o.dataType):U}}if(t[0]===x.numericLiteral){let r=kt(t[1]);if(!r)throw new Error(`Invalid numeric literal ${t[1]}`);return r}if(t[0]===x.call){let[r,n,a]=t,o=I(e,n),s=o.value;e.callStack.push(s);let p=a.map(m=>I(e,m)).map(m=>({value:D(e,m),dataType:m.dataType})),u=p.map(m=>m.value);if(e.callStack.pop(),typeof s=="string")return{value:`${s}(${u.join(", ")})`,dataType:o.dataType};if(h(s))return{value:`${e.resolve(s)}(${u.join(", ")})`,dataType:o.dataType};if(!Gr(s))throw new Error(`Function ${String(s)} has not been created using TypeGPU APIs. Did you mean to wrap the function with tgpu.fn(args, return)(...) ?`);let d=s(...p);return{value:D(e,d),dataType:d.dataType}}if(t[0]===x.objectExpr){let r=t[1],n=e.callStack[e.callStack.length-1],a=o=>o.map(s=>{let i=I(e,s);return D(e,i)}).join(", ");if(h(n)){let s=Object.keys(n.propTypes).map(i=>{let p=r[i];if(p===void 0)throw new Error(`Missing property ${i} in object literal for struct ${n}`);return p});return{value:a(s),dataType:n}}return{value:a(Object.values(r)),dataType:U}}if(t[0]===x.arrayExpr){let[r,n]=t,a=n.map(d=>I(e,d));if(a.length===0)throw new Error("Cannot create empty array literal.");let o=a[0]?.dataType,s=a.find(d=>d.dataType!==o);if(s)throw new Error(`Cannot mix types in array literal. Type ${s.dataType.type} does not match expected type ${o?.type}.`);if(!E(o))throw new Error("Cannot use non-WGSL data types in array literals.");o=o.type==="abstractInt"?v:o.type==="abstractFloat"?l:o;let p=`array<${e.resolve(o)}, ${a.length}>`,u=a.map(d=>D(e,d));return{value:`${p}( ${u.join(", ")} )`,dataType:$r(o,a.length)}}if(t[0]===x.stringLiteral)throw new Error("Cannot use string literals in TGSL.");if(t[0]===x.preUpdate)throw new Error("Cannot use pre-updates in TGSL.");ua(t)}function me(e,t){if(typeof t=="string")return`${e.pre}${D(e,sr(e,t))};`;if(typeof t=="boolean")return`${e.pre}${D(e,cn(e,t))};`;if(t[0]===x.return){let r=t[1],n=r!==void 0?D(e,I(e,r)):void 0;if(h(e.callStack[e.callStack.length-1])&&typeof r=="object"&&r[0]===x.objectExpr){let a=e.resolve(e.callStack[e.callStack.length-1]);return`${e.pre}return ${a}(${n});`}return n?`${e.pre}return ${n};`:`${e.pre}return;`}if(t[0]===x.if){let[r,n,a,o]=t,s=D(e,I(e,n));e.indent();let i=me(e,a);e.dedent(),e.indent();let p=o?me(e,o):void 0;return e.dedent(),p?`${e.pre}if (${s})
18
+ ${i}
14
19
  ${e.pre}else
15
- ${i}`:`${e.pre}if (${o})
16
- ${s}`}if("l"in t||"c"in t){let[r,n]="l"in t?t.l:t.c,a=n?U(e,n):void 0;if(!a||!n)throw new Error("Cannot create variable without an initial value.");if(ce(a.dataType))throw new Error("Cannot create variable with loose data type.");ta(e,r,a.dataType);let o=h(e,Wt(e,r));if(typeof n=="object"&&"o"in n&&b(e.callStack[e.callStack.length-1])){let s=e.resolve(e.callStack[e.callStack.length-1]);return`${e.pre}var ${o} = ${s}(${h(e,a)});`}return`${e.pre}var ${o} = ${h(e,a)};`}if("b"in t){e.pushBlockScope();try{return tn(e,t)}finally{e.popBlockScope()}}if("j"in t){let[r,n,a,o]=t.j,s=r?pe(e,r):void 0,i=s?s.slice(0,-1):"",p=n?U(e,n):void 0,u=p?h(e,p):"",d=a?pe(e,a):void 0,m=d?d.slice(0,-1):"";e.indent();let T=pe(e,o);return e.dedent(),`${e.pre}for (${i}; ${u}; ${m})
17
- ${T}`}if("w"in t){let[r,n]=t.w,a=h(e,U(e,r));e.indent();let o=pe(e,n);return e.dedent(),`${e.pre}while (${a})
18
- ${o}`}return"k"in t?`${e.pre}continue;`:"d"in t?`${e.pre}break;`:`${e.pre}${h(e,U(e,t))};`}function rn(e,t){return tn(e,t)}import{BufferReader as Ht,BufferWriter as Jt}from"typed-binary";import{getSystemEndianness as oa}from"typed-binary";import{Measurer as na}from"typed-binary";function ra(e,t){let r="size"in e?e.size:e.currentByteOffset,n=t-1,a=r&n;"skipBytes"in e?e.skipBytes(t-a&n):e.add(t-a&n)}var w=ra;var nn=new WeakMap;function et(e){let t=nn.get(e);if(t)return t;let r=new na,n={},a;for(let o in e.propTypes){let s=e.propTypes[o];if(s===void 0)throw new Error(`Property ${o} is undefined in struct`);let i=r.size;w(r,Y(e)?W(s):F(s)),a&&(a.padding=r.size-i);let p=c(s);n[o]={offset:r.size,size:p},a=n[o],r.add(p)}return a&&(a.padding=V(c(e),F(e))-r.size),nn.set(e,n),n}var rt=(()=>{try{return new Function("return true"),!0}catch{return!1}})(),Mt=new WeakMap,Nt={u32:"u32",vec2u:"u32",vec3u:"u32",vec4u:"u32",i32:"i32",vec2i:"i32",vec3i:"i32",vec4i:"i32",f32:"f32",vec2f:"f32",vec3f:"f32",vec4f:"f32",vec2h:"f32",vec3h:"f32",vec4h:"f32",mat2x2f:"f32",mat3x3f:"f32",mat4x4f:"f32"},jt={u32:"setUint32",i32:"setInt32",f32:"setFloat32"};function tt(e,t,r){if(Pr(e)||ye(e))return tt(e.inner,t,r);if(b(e)||Y(e)){let a=et(e),o=Object.entries(a).sort((i,p)=>i[1].offset-p[1].offset),s="";for(let[i,p]of o){let u=e.propTypes[i];u&&(s+=tt(u,`(${t} + ${p.offset})`,`${r}.${i}`))}return s}if(G(e)||Qe(e)){let a=e,o=V(c(a.elementType),F(a.elementType)),s="";return s+=`for (let i = 0; i < ${a.elementCount}; i++) {
19
- `,s+=tt(a.elementType,`(${t} + i * ${o})`,`${r}[i]`),s+=`}
20
- `,s}if(Ir(e)){let a=Nt[e.type],o="",s=jt[a],i=["x","y","z","w"],p=Ar(e)?2:Ur(e)?3:4;for(let u=0;u<p;u++)o+=`output.${s}((${t} + ${u*4}), ${r}.${i[u]}, littleEndian);
21
- `;return o}if(Ye(e)){let a=Nt[e.type],o=jt[a],s=Br(e)?2:Rr(e)?3:4,i=s*s,p=V(s*4,8),u="";for(let d=0;d<i;d++){let m=Math.floor(d/s),T=d%s,f=m*p+T*4;u+=`output.${o}((${t} + ${f}), ${r}.columns[${m}].${["x","y","z","w"][T]}, littleEndian);
22
- `}return u}let n=Nt[e.type];return`output.${jt[n]}(${t}, ${r}, littleEndian);
23
- `}function nt(e){if(Mt.has(e))return Mt.get(e);let t=tt(e,"offset","value"),r=new Function("output","offset","value","littleEndian=true",t);return Mt.set(e,r),r}var Se={bool(){throw new Error("Booleans are not host-shareable")},f32(e,t,r){e.writeFloat32(r)},f16(e,t,r){e.writeFloat16(r)},i32(e,t,r){e.writeInt32(r)},u32(e,t,r){e.writeUint32(r)},vec2f(e,t,r){e.writeFloat32(r.x),e.writeFloat32(r.y)},vec2h(e,t,r){e.writeFloat16(r.x),e.writeFloat16(r.y)},vec2i(e,t,r){e.writeInt32(r.x),e.writeInt32(r.y)},vec2u(e,t,r){e.writeUint32(r.x),e.writeUint32(r.y)},"vec2<bool>"(){throw new Error("Booleans are not host-shareable")},vec3f(e,t,r){e.writeFloat32(r.x),e.writeFloat32(r.y),e.writeFloat32(r.z)},vec3h(e,t,r){e.writeFloat16(r.x),e.writeFloat16(r.y),e.writeFloat16(r.z)},vec3i(e,t,r){e.writeInt32(r.x),e.writeInt32(r.y),e.writeInt32(r.z)},vec3u(e,t,r){e.writeUint32(r.x),e.writeUint32(r.y),e.writeUint32(r.z)},"vec3<bool>"(){throw new Error("Booleans are not host-shareable")},vec4f(e,t,r){e.writeFloat32(r.x),e.writeFloat32(r.y),e.writeFloat32(r.z),e.writeFloat32(r.w)},vec4h(e,t,r){e.writeFloat16(r.x),e.writeFloat16(r.y),e.writeFloat16(r.z),e.writeFloat16(r.w)},vec4i(e,t,r){e.writeInt32(r.x),e.writeInt32(r.y),e.writeInt32(r.z),e.writeInt32(r.w)},vec4u(e,t,r){e.writeUint32(r.x),e.writeUint32(r.y),e.writeUint32(r.z),e.writeUint32(r.w)},"vec4<bool>"(){throw new Error("Booleans are not host-shareable")},mat2x2f(e,t,r){for(let n=0;n<r.length;++n)e.writeFloat32(r[n])},mat3x3f(e,t,r){for(let n=0;n<r.length;++n)e.writeFloat32(r[n])},mat4x4f(e,t,r){for(let n=0;n<r.length;++n)e.writeFloat32(r[n])},struct(e,t,r){let n=F(t);w(e,n);for(let[a,o]of Object.entries(t.propTypes))w(e,F(o)),X(e,o,r[a]);w(e,n)},array(e,t,r){if(t.elementCount===0)throw new Error("Cannot write using a runtime-sized schema.");let n=F(t);w(e,n);let a=e.currentByteOffset;for(let o=0;o<Math.min(t.elementCount,r.length);o++)w(e,n),X(e,t.elementType,r[o]);e.seekTo(a+c(t))},ptr(){throw new Error("Pointers are not host-shareable")},atomic(e,t,r){Se[t.inner.type]?.(e,t,r)},decorated(e,t,r){let n=W(t);w(e,n);let a=e.currentByteOffset;Se[t.inner?.type]?.(e,t.inner,r),e.seekTo(a+c(t))},uint8(e,t,r){e.writeUint8(r)},uint8x2(e,t,r){e.writeUint8(r.x),e.writeUint8(r.y)},uint8x4(e,t,r){e.writeUint8(r.x),e.writeUint8(r.y),e.writeUint8(r.z),e.writeUint8(r.w)},sint8(e,t,r){e.writeInt8(r)},sint8x2(e,t,r){e.writeInt8(r.x),e.writeInt8(r.y)},sint8x4(e,t,r){e.writeInt8(r.x),e.writeInt8(r.y),e.writeInt8(r.z),e.writeInt8(r.w)},unorm8(e,t,r){e.writeUint8(r*255)},unorm8x2(e,t,r){e.writeUint8(r.x*255),e.writeUint8(r.y*255)},unorm8x4(e,t,r){e.writeUint8(r.x*255),e.writeUint8(r.y*255),e.writeUint8(r.z*255),e.writeUint8(r.w*255)},snorm8(e,t,r){e.writeUint8(r*127+128)},snorm8x2(e,t,r){e.writeUint8(r.x*127+128),e.writeUint8(r.y*127+128)},snorm8x4(e,t,r){e.writeUint8(r.x*127+128),e.writeUint8(r.y*127+128),e.writeUint8(r.z*127+128),e.writeUint8(r.w*127+128)},uint16(e,t,r){e.writeUint16(r)},uint16x2(e,t,r){e.writeUint16(r.x),e.writeUint16(r.y)},uint16x4(e,t,r){e.writeUint16(r.x),e.writeUint16(r.y),e.writeUint16(r.z),e.writeUint16(r.w)},sint16(e,t,r){e.writeInt16(r)},sint16x2(e,t,r){e.writeInt16(r.x),e.writeInt16(r.y)},sint16x4(e,t,r){e.writeInt16(r.x),e.writeInt16(r.y),e.writeInt16(r.z),e.writeInt16(r.w)},unorm16(e,t,r){e.writeUint16(r*65535)},unorm16x2(e,t,r){e.writeUint16(r.x*65535),e.writeUint16(r.y*65535)},unorm16x4(e,t,r){e.writeUint16(r.x*65535),e.writeUint16(r.y*65535),e.writeUint16(r.z*65535),e.writeUint16(r.w*65535)},snorm16(e,t,r){e.writeUint16(r*32767+32768)},snorm16x2(e,t,r){e.writeUint16(r.x*32767+32768),e.writeUint16(r.y*32767+32768)},snorm16x4(e,t,r){e.writeUint16(r.x*32767+32768),e.writeUint16(r.y*32767+32768),e.writeUint16(r.z*32767+32768),e.writeUint16(r.w*32767+32768)},float16(e,t,r){e.writeFloat16(r)},float16x2(e,t,r){e.writeFloat16(r.x),e.writeFloat16(r.y)},float16x4(e,t,r){e.writeFloat16(r.x),e.writeFloat16(r.y),e.writeFloat16(r.z),e.writeFloat16(r.w)},float32(e,t,r){e.writeFloat32(r)},float32x2(e,t,r){e.writeFloat32(r.x),e.writeFloat32(r.y)},float32x3(e,t,r){e.writeFloat32(r.x),e.writeFloat32(r.y),e.writeFloat32(r.z)},float32x4(e,t,r){e.writeFloat32(r.x),e.writeFloat32(r.y),e.writeFloat32(r.z),e.writeFloat32(r.w)},uint32(e,t,r){e.writeUint32(r)},uint32x2(e,t,r){e.writeUint32(r.x),e.writeUint32(r.y)},uint32x3(e,t,r){e.writeUint32(r.x),e.writeUint32(r.y),e.writeUint32(r.z)},uint32x4(e,t,r){e.writeUint32(r.x),e.writeUint32(r.y),e.writeUint32(r.z),e.writeUint32(r.w)},sint32(e,t,r){e.writeInt32(r)},sint32x2(e,t,r){e.writeInt32(r.x),e.writeInt32(r.y)},sint32x3(e,t,r){e.writeInt32(r.x),e.writeInt32(r.y),e.writeInt32(r.z)},sint32x4(e,t,r){e.writeInt32(r.x),e.writeInt32(r.y),e.writeInt32(r.z),e.writeInt32(r.w)},"unorm10-10-10-2"(e,t,r){let n=0;n|=(r.x*1023&1023)<<22,n|=(r.x*1023&1023)<<12,n|=(r.y*1023&1023)<<2,n|=r.z*3&3,e.writeUint32(n)},"unorm8x4-bgra"(e,t,r){e.writeUint8(r.z*255),e.writeUint8(r.y*255),e.writeUint8(r.x*255),e.writeUint8(r.w*255)},disarray(e,t,r){let n=F(t);w(e,n);let a=e.currentByteOffset;for(let o=0;o<Math.min(t.elementCount,r.length);o++)w(e,n),Se[t.elementType?.type]?.(e,t.elementType,r[o]);e.seekTo(a+c(t))},unstruct(e,t,r){for(let[n,a]of Object.entries(t.propTypes))Se[a.type]?.(e,a,r[n])},"loose-decorated"(e,t,r){let n=W(t);w(e,n);let a=e.currentByteOffset,o=Se[t.inner?.type];return o?.(e,t.inner,r),e.seekTo(a+c(t)),r}};function X(e,t,r){let n=Se[t.type];if(!n)throw new Error(`Cannot write data of type '${t.type}'.`);n(e,t,r)}var le={bool(){throw new Error("Booleans are not host-shareable")},f32(e){return e.readFloat32()},f16(e){return e.readFloat16()},i32(e){return e.readInt32()},u32(e){return e.readUint32()},vec2f(e){return L(e.readFloat32(),e.readFloat32())},vec3f(e){return se(e.readFloat32(),e.readFloat32(),e.readFloat32())},vec4f(e){return x(e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32())},vec2h(e){return Re(e.readFloat16(),e.readFloat16())},vec3h(e){return Pe(e.readFloat16(),e.readFloat16(),e.readFloat16())},vec4h(e){return _e(e.readFloat16(),e.readFloat16(),e.readFloat16(),e.readFloat16())},vec2i(e){return H(e.readInt32(),e.readInt32())},vec3i(e){return ge(e.readInt32(),e.readInt32(),e.readInt32())},vec4i(e){return R(e.readInt32(),e.readInt32(),e.readInt32(),e.readInt32())},vec2u(e){return J(e.readUint32(),e.readUint32())},vec3u(e){return fe(e.readUint32(),e.readUint32(),e.readUint32())},vec4u(e){return P(e.readUint32(),e.readUint32(),e.readUint32(),e.readUint32())},"vec2<bool>"(){throw new Error("Booleans are not host-shareable")},"vec3<bool>"(){throw new Error("Booleans are not host-shareable")},"vec4<bool>"(){throw new Error("Booleans are not host-shareable")},mat2x2f(e){return qe(e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32())},mat3x3f(e){let t=()=>{let r=e.readFloat32();return e.readFloat32(),r};return He(e.readFloat32(),e.readFloat32(),t(),e.readFloat32(),e.readFloat32(),t(),e.readFloat32(),e.readFloat32(),t())},mat4x4f(e){return Je(e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32())},struct(e,t){let r=F(t);w(e,r);let n={};for(let[a,o]of Object.entries(t.propTypes))w(e,F(o)),n[a]=$(e,o);return w(e,r),n},array(e,t){if(t.elementCount===0)throw new Error("Cannot read using a runtime-sized schema.");let r=F(t),n=[];for(let a=0;a<t.elementCount;a++){w(e,r);let o=t.elementType,s=$(e,o);n.push(s)}return w(e,r),n},ptr(){throw new Error("Pointers are not host-shareable")},atomic(e,t){return $(e,t.inner)},decorated(e,t){let r=W(t);w(e,r);let n=e.currentByteOffset,a=$(e,t.inner);return e.seekTo(n+c(t)),a},uint8:e=>e.readUint8(),uint8x2:e=>J(e.readUint8(),e.readUint8()),uint8x4:e=>P(e.readUint8(),e.readUint8(),e.readUint8(),e.readUint8()),sint8:e=>e.readInt8(),sint8x2:e=>H(e.readInt8(),e.readInt8()),sint8x4:e=>R(e.readInt8(),e.readInt8(),e.readInt8(),e.readInt8()),unorm8:e=>e.readUint8()/255,unorm8x2:e=>L(e.readUint8()/255,e.readUint8()/255),unorm8x4:e=>x(e.readUint8()/255,e.readUint8()/255,e.readUint8()/255,e.readUint8()/255),snorm8:e=>(e.readUint8()-128)/127,snorm8x2:e=>L((e.readUint8()-128)/127,(e.readUint8()-128)/127),snorm8x4:e=>x((e.readUint8()-128)/127,(e.readUint8()-128)/127,(e.readUint8()-128)/127,(e.readUint8()-128)/127),uint16:e=>e.readUint16(),uint16x2:e=>J(e.readUint16(),e.readUint16()),uint16x4:e=>P(e.readUint16(),e.readUint16(),e.readUint16(),e.readUint16()),sint16:e=>e.readInt16(),sint16x2:e=>H(e.readInt16(),e.readInt16()),sint16x4:e=>R(e.readInt16(),e.readInt16(),e.readInt16(),e.readInt16()),unorm16:e=>e.readUint16()/65535,unorm16x2:e=>L(e.readUint16()/65535,e.readUint16()/65535),unorm16x4:e=>x(e.readUint16()/65535,e.readUint16()/65535,e.readUint16()/65535,e.readUint16()/65535),snorm16:e=>(e.readUint16()-32768)/32767,snorm16x2:e=>L(le.snorm16(e),le.snorm16(e)),snorm16x4:e=>x(le.snorm16(e),le.snorm16(e),le.snorm16(e),le.snorm16(e)),float16(e){return e.readFloat16()},float16x2:e=>L(e.readFloat16(),e.readFloat16()),float16x4:e=>x(e.readFloat16(),e.readFloat16(),e.readFloat16(),e.readFloat16()),float32:e=>e.readFloat32(),float32x2:e=>L(e.readFloat32(),e.readFloat32()),float32x3:e=>se(e.readFloat32(),e.readFloat32(),e.readFloat32()),float32x4:e=>x(e.readFloat32(),e.readFloat32(),e.readFloat32(),e.readFloat32()),uint32:e=>e.readUint32(),uint32x2:e=>J(e.readUint32(),e.readUint32()),uint32x3:e=>fe(e.readUint32(),e.readUint32(),e.readUint32()),uint32x4:e=>P(e.readUint32(),e.readUint32(),e.readUint32(),e.readUint32()),sint32:e=>e.readInt32(),sint32x2:e=>H(e.readInt32(),e.readInt32()),sint32x3:e=>ge(e.readInt32(),e.readInt32(),e.readInt32()),sint32x4:e=>R(e.readInt32(),e.readInt32(),e.readInt32(),e.readInt32()),"unorm10-10-10-2"(e){let t=e.readUint32(),r=(t>>22)/1023,n=(t>>12&1023)/1023,a=(t>>2&1023)/1023,o=(t&3)/3;return x(r,n,a,o)},"unorm8x4-bgra"(e){let t=e.readByte()/255,r=e.readByte()/255,n=e.readByte()/255,a=e.readByte()/255;return x(n,r,t,a)},unstruct(e,t){let r={};for(let[n,a]of Object.entries(t.propTypes))r[n]=$(e,a);return r},disarray(e,t){let r=F(t),n=[];for(let a=0;a<t.elementCount;a++)w(e,r),n.push($(e,t.elementType));return w(e,r),n},"loose-decorated"(e,t){w(e,W(t));let r=e.currentByteOffset,n=$(e,t.inner);return e.seekTo(r+c(t)),n}};function $(e,t){let r=le[t.type];if(!r)throw new Error(`Cannot read data of type '${t.type}'.`);return r(e,t)}import{BufferWriter as aa}from"typed-binary";function an(e,t){let r=c(e);if(r===0||t===void 0||t===null)return[];let n=new ArrayBuffer(r),a=new aa(n),o=[];function s(u,d,m,T){if(d!=null){if(b(u)||Y(u)){let f=et(u);for(let[g,D]of Object.entries(f)){let S=u.propTypes[g];if(!S)continue;let I=d[g];I!==void 0&&s(S,I,m+D.offset,D.padding??T)}return}if(G(u)||Qe(u)){let f=u,g=V(c(f.elementType),F(f.elementType));if(!Array.isArray(d))throw new Error("Partial value for array must be an array");let D=d;D.sort((S,I)=>S.idx-I.idx);for(let{idx:S,value:I}of D)s(f.elementType,I,m+S*g,g-c(f.elementType))}else{let f=c(u);a.seekTo(m),X(a,u,d),o.push({start:m,end:m+f,padding:T})}}}if(s(e,t,0),o.length===0)return[];let i=[],p=o[0];for(let u=1;u<o.length;u++){let d=o[u];if(!d||!p)throw new Error("Internal error: missing segment");d.start===p.end+(p.padding??0)?(p.end=d.end,p.padding=d.padding):(i.push({data:new Uint8Array(n,p.start,p.end-p.start)}),p=d)}if(!p)throw new Error("Internal error: missing segment");return i.push({data:new Uint8Array(n,p.start,p.end-p.start)}),i}function de(e){return!!e?.usableAsStorage}var $e=class e extends Error{constructor(t){super(`Resource '${t.label??"<unnamed>"}' cannot be bound as 'storage'. Use .$usage('storage') to allow it.`),Object.setPrototypeOf(this,e.prototype)}};function at(e){return!!e.usableAsUniform}var pn={uniform:"uniform",mutable:"storage, read_write",readonly:"storage, read"},Oe=class{constructor(t,r){this.usage=t;this.buffer=r;this[y]={dataType:r.dataType}}resourceType="buffer-usage";[y];get label(){return this.buffer.label}$name(t){return this.buffer.$name(t),this}"~resolve"(t){let r=t.names.makeUnique(this.label),{group:n,binding:a}=t.allocateFixedEntry(this.usage==="uniform"?{uniform:this.buffer.dataType}:{storage:this.buffer.dataType,access:this.usage},this.buffer),o=pn[this.usage];return t.addDeclaration(`@group(${n}) @binding(${a}) var<${o}> ${r}: ${t.resolve(this.buffer.dataType)};`),r}write(t){this.buffer.write(t)}toString(){return`${this.usage}:${this.label??"<unnamed>"}`}get value(){if(!oe())throw new Error("Cannot access buffer's value directly in JS.");return new Proxy({"~resolve":t=>t.resolve(this),toString:()=>`.value:${this.label??"<unnamed>"}`,[y]:{dataType:this.buffer.dataType}},M)}},Ge=class{constructor(t,r,n){this.usage=t;this.dataType=r;this._membership=n;this[y]={dataType:r}}resourceType="buffer-usage";[y];get label(){return this._membership.key}"~resolve"(t){let r=t.names.makeUnique(this.label),n=t.allocateLayoutEntry(this._membership.layout),a=pn[this.usage];return t.addDeclaration(`@group(${n}) @binding(${this._membership.idx}) var<${a}> ${r}: ${t.resolve(this.dataType)};`),r}toString(){return`${this.usage}:${this.label??"<unnamed>"}`}get value(){if(!oe())throw new Error("Cannot access buffer's value directly in JS.");return new Proxy({"~resolve":t=>t.resolve(this),toString:()=>`.value:${this.label??"<unnamed>"}`,[y]:{dataType:this.dataType}},M)}},on=new WeakMap;function zt(e){if(!de(e))throw new Error(`Cannot pass ${e} to asMutable, as it is not allowed to be used as storage. To allow it, call .$usage('storage') when creating the buffer.`);let t=on.get(e);return t||(t=new Oe("mutable",e),on.set(e,t)),t}var sn=new WeakMap;function Kt(e){if(!de(e))throw new Error(`Cannot pass ${e} to asReadonly, as it is not allowed to be used as storage. To allow it, call .$usage('storage') when creating the buffer.`);let t=sn.get(e);return t||(t=new Oe("readonly",e),sn.set(e,t)),t}var un=new WeakMap;function qt(e){if(!at(e))throw new Error(`Cannot pass ${e} to asUniform, as it is not allowed to be used as a uniform. To allow it, call .$usage('uniform') when creating the buffer.`);let t=un.get(e);return t||(t=new Oe("uniform",e),un.set(e,t)),t}var sa={uniform:qt,mutable:zt,readonly:Kt};function dn(e,t,r){return C(t)?new ot(e,t,r):new ot(e,t,r,["storage","uniform"])}function Z(e){return e.resourceType==="buffer"}function ia(e){return!!e.usableAsVertex}var ln=oa(),ot=class{constructor(t,r,n,a){this._group=t;this.dataType=r;this.initialOrBuffer=n;this._disallowedUsages=a;$r(n)?(this._ownBuffer=!1,this._buffer=n):(this._ownBuffer=!0,this.initial=n)}resourceType="buffer";flags=GPUBufferUsage.COPY_DST|GPUBufferUsage.COPY_SRC;_buffer=null;_ownBuffer;_destroyed=!1;_hostBuffer;_label;initial;usableAsUniform=!1;usableAsStorage=!1;usableAsVertex=!1;get label(){return this._label}get buffer(){let t=this._group.device;if(this._destroyed)throw new Error("This buffer has been destroyed");if(!this._buffer&&(this._buffer=t.createBuffer({size:c(this.dataType),usage:this.flags,mappedAtCreation:!!this.initial,label:this.label??"<unnamed>"}),this.initial)){let r=new Jt(this._buffer.getMappedRange());X(r,this.dataType,this.initial),this._buffer.unmap()}return this._buffer}get destroyed(){return this._destroyed}$name(t){return this._label=t,this._buffer&&(this._buffer.label=t),this}$usage(...t){for(let r of t){if(this._disallowedUsages?.includes(r))throw new Error(`Buffer of type ${this.dataType.type} cannot be used as ${r}`);this.flags|=r==="uniform"?GPUBufferUsage.UNIFORM:0,this.flags|=r==="storage"?GPUBufferUsage.STORAGE:0,this.flags|=r==="vertex"?GPUBufferUsage.VERTEX:0,this.usableAsUniform=this.usableAsUniform||r==="uniform",this.usableAsStorage=this.usableAsStorage||r==="storage",this.usableAsVertex=this.usableAsVertex||r==="vertex"}return this}$addFlags(t){if(!this._ownBuffer)throw new Error("Cannot add flags to a buffer that is not managed by TypeGPU.");return t&GPUBufferUsage.MAP_READ?(this.flags=GPUBufferUsage.COPY_DST|GPUBufferUsage.MAP_READ,this):t&GPUBufferUsage.MAP_WRITE?(this.flags=GPUBufferUsage.COPY_SRC|GPUBufferUsage.MAP_WRITE,this):(this.flags|=t,this)}compileWriter(){if(rt)nt(this.dataType);else throw new Error("This environment does not allow eval")}write(t){let r=this.buffer,n=this._group.device;if(r.mapState==="mapped"){let o=r.getMappedRange();if(rt){nt(this.dataType)(new DataView(o),0,t,ln==="little");return}X(new Jt(o),this.dataType,t);return}let a=c(this.dataType);this._hostBuffer||(this._hostBuffer=new ArrayBuffer(a)),this._group.flush(),rt?nt(this.dataType)(new DataView(this._hostBuffer),0,t,ln==="little"):X(new Jt(this._hostBuffer),this.dataType,t),n.queue.writeBuffer(r,0,this._hostBuffer,0,a)}writePartial(t){let r=this.buffer,n=this._group.device,a=an(this.dataType,t);if(r.mapState==="mapped"){let o=r.getMappedRange(),s=new Uint8Array(o);for(let i of a)s.set(i.data,i.data.byteOffset)}else for(let o of a)n.queue.writeBuffer(r,o.data.byteOffset,o.data,0,o.data.byteLength)}copyFrom(t){if(this.buffer.mapState==="mapped")throw new Error("Cannot copy to a mapped buffer.");let r=c(this.dataType);this._group.commandEncoder.copyBufferToBuffer(t.buffer,0,this.buffer,0,r)}async read(){this._group.flush();let t=this.buffer,r=this._group.device;if(t.mapState==="mapped"){let s=t.getMappedRange();return $(new Ht(s),this.dataType)}if(t.usage&GPUBufferUsage.MAP_READ){await t.mapAsync(GPUMapMode.READ);let s=t.getMappedRange(),i=$(new Ht(s),this.dataType);return t.unmap(),i}let n=r.createBuffer({size:c(this.dataType),usage:GPUBufferUsage.COPY_DST|GPUBufferUsage.MAP_READ}),a=r.createCommandEncoder();a.copyBufferToBuffer(t,0,n,0,c(this.dataType)),r.queue.submit([a.finish()]),await r.queue.onSubmittedWorkDone(),await n.mapAsync(GPUMapMode.READ,0,c(this.dataType));let o=$(new Ht(n.getMappedRange()),this.dataType);return n.unmap(),n.destroy(),o}as(t){return sa[t]?.(this)}destroy(){this._destroyed||(this._destroyed=!0,this._ownBuffer&&this._buffer?.destroy())}toString(){return`buffer:${this._label??"<unnamed>"}`}};function mn(e){return new Yt(e)}function gn(e){return new Qt(e)}function We(e){return e?.resourceType==="sampler"}function Me(e){return e?.resourceType==="sampler-comparison"}var st=class{constructor(t){this._membership=t}resourceType="sampler";get label(){return this._membership.key}"~resolve"(t){let r=t.names.makeUnique(this.label),n=t.allocateLayoutEntry(this._membership.layout);return t.addDeclaration(`@group(${n}) @binding(${this._membership.idx}) var ${r}: sampler;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}},it=class{constructor(t){this._membership=t}resourceType="sampler-comparison";get label(){return this._membership.key}"~resolve"(t){let r=t.names.makeUnique(this.label),n=t.allocateLayoutEntry(this._membership.layout);return t.addDeclaration(`@group(${n}) @binding(${this._membership.idx}) var ${r}: sampler_comparison;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}},Yt=class{constructor(t){this._props=t;this._filtering=t.minFilter==="linear"||t.magFilter==="linear"||t.mipmapFilter==="linear"}resourceType="sampler";_label;_filtering;_sampler=null;unwrap(t){return this._sampler||(this._sampler=t.device.createSampler({...this._props,label:this._label??"<unnamed>"})),this._sampler}get label(){return this._label}$name(t){return this._label=t,this}"~resolve"(t){let r=t.names.makeUnique(this._label),{group:n,binding:a}=t.allocateFixedEntry({sampler:this._filtering?"filtering":"non-filtering"},this);return t.addDeclaration(`@group(${n}) @binding(${a}) var ${r}: sampler;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}},Qt=class{constructor(t){this._props=t}resourceType="sampler-comparison";_label;_sampler=null;unwrap(t){return this._sampler||(this._sampler=t.device.createSampler({...this._props,label:this._label??"<unnamed>"})),this._sampler}get label(){return this._label}$name(t){return this._label=t,this}"~resolve"(t){let r=t.names.makeUnique(this.label),{group:n,binding:a}=t.allocateFixedEntry({sampler:"comparison"},this);return t.addDeclaration(`@group(${n}) @binding(${a}) var ${r}: sampler_comparison;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}};var ut=class{constructor(t){this._membership=t}resourceType="external-texture";get label(){return this._membership.key}"~resolve"(t){let r=t.names.makeUnique(this.label),n=t.allocateLayoutEntry(this._membership.layout);return t.addDeclaration(`@group(${n}) @binding(${this._membership.idx}) var ${r}: texture_external;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}};var fn={r8unorm:l,r8snorm:l,r8uint:v,r8sint:B,r16uint:v,r16sint:B,r16float:l,rg8unorm:l,rg8snorm:l,rg8uint:v,rg8sint:B,r32uint:v,r32sint:B,r32float:l,rg16uint:v,rg16sint:B,rg16float:l,rgba8unorm:l,"rgba8unorm-srgb":l,rgba8snorm:l,rgba8uint:v,rgba8sint:B,bgra8unorm:l,"bgra8unorm-srgb":l,rgb9e5ufloat:l,rgb10a2uint:v,rgb10a2unorm:l,rg11b10ufloat:l,rg32uint:v,rg32sint:B,rg32float:l,rgba16uint:v,rgba16sint:B,rgba16float:l,rgba32uint:v,rgba32sint:B,rgba32float:l,stencil8:l,depth16unorm:l,depth24plus:l,"depth24plus-stencil8":l,depth32float:l,"depth32float-stencil8":l,"bc1-rgba-unorm":l,"bc1-rgba-unorm-srgb":l,"bc2-rgba-unorm":l,"bc2-rgba-unorm-srgb":l,"bc3-rgba-unorm":l,"bc3-rgba-unorm-srgb":l,"bc4-r-unorm":l,"bc4-r-snorm":l,"bc5-rg-unorm":l,"bc5-rg-snorm":l,"bc6h-rgb-ufloat":l,"bc6h-rgb-float":l,"bc7-rgba-unorm":l,"bc7-rgba-unorm-srgb":l,"etc2-rgb8unorm":l,"etc2-rgb8unorm-srgb":l,"etc2-rgb8a1unorm":l,"etc2-rgb8a1unorm-srgb":l,"etc2-rgba8unorm":l,"etc2-rgba8unorm-srgb":l,"eac-r11unorm":l,"eac-r11snorm":l,"eac-rg11unorm":l,"eac-rg11snorm":l,"astc-4x4-unorm":l,"astc-4x4-unorm-srgb":l,"astc-5x4-unorm":l,"astc-5x4-unorm-srgb":l,"astc-5x5-unorm":l,"astc-5x5-unorm-srgb":l,"astc-6x5-unorm":l,"astc-6x5-unorm-srgb":l,"astc-6x6-unorm":l,"astc-6x6-unorm-srgb":l,"astc-8x5-unorm":l,"astc-8x5-unorm-srgb":l,"astc-8x6-unorm":l,"astc-8x6-unorm-srgb":l,"astc-8x8-unorm":l,"astc-8x8-unorm-srgb":l,"astc-10x5-unorm":l,"astc-10x5-unorm-srgb":l,"astc-10x6-unorm":l,"astc-10x6-unorm-srgb":l,"astc-10x8-unorm":l,"astc-10x8-unorm-srgb":l,"astc-10x10-unorm":l,"astc-10x10-unorm-srgb":l,"astc-12x10-unorm":l,"astc-12x10-unorm-srgb":l,"astc-12x12-unorm":l,"astc-12x12-unorm-srgb":l},Ne={rgba8unorm:x,rgba8snorm:x,rgba8uint:P,rgba8sint:R,rgba16uint:P,rgba16sint:R,rgba16float:x,r32uint:P,r32sint:R,r32float:x,rg32uint:P,rg32sint:R,rg32float:x,rgba32uint:P,rgba32sint:R,rgba32float:x,bgra8unorm:x},Tn={f32:"float",u32:"uint",i32:"sint"},yn={float:l,"unfilterable-float":l,uint:v,sint:B,depth:l};function cn(e,t){return new Xt(e,t)}function q(e){return e?.resourceType==="texture"}function je(e){return e?.resourceType==="texture-storage-view"}function ze(e){return e?.resourceType==="texture-sampled-view"}var xn={mutable:"read_write",readonly:"read",writeonly:"write"},Xt=class{constructor(t,r){this.props=t;this._branch=r}resourceType="texture";usableAsSampled=!1;usableAsStorage=!1;usableAsRender=!1;_destroyed=!1;_label;_flags=GPUTextureUsage.COPY_DST|GPUTextureUsage.COPY_SRC;_texture=null;get label(){return this._label}$name(t){return this._label=t,this}unwrap(){if(this._destroyed)throw new Error("This texture has been destroyed");return this._texture||(this._texture=this._branch.device.createTexture({label:this._label??"<unnamed>",format:this.props.format,size:this.props.size,usage:this._flags,dimension:this.props.dimension??"2d",viewFormats:this.props.viewFormats??[],mipLevelCount:this.props.mipLevelCount??1,sampleCount:this.props.sampleCount??1})),this._texture}$usage(...t){let r=t.includes("storage"),n=t.includes("sampled"),a=t.includes("render");return this._flags|=n?GPUTextureUsage.TEXTURE_BINDING:0,this._flags|=r?GPUTextureUsage.STORAGE_BINDING:0,this._flags|=a?GPUTextureUsage.RENDER_ATTACHMENT:0,this.usableAsStorage||=r,this.usableAsSampled||=n,this.usableAsRender||=a,this}createView(t,r){if(t==="sampled")return this._asSampled(r);let n=r;switch(t){case"mutable":return this._asMutable(n);case"readonly":return this._asReadonly(n);case"writeonly":return this._asWriteonly(n)}}_asStorage(t,r){if(!this.usableAsStorage)throw new Error("Unusable as storage");let n=t?.format??this.props.format,a=Ne[n];return Ue(!!a,`Unsupported storage texture format: ${n}`),new Zt(t??{},r,this)}_asReadonly(t){return this._asStorage(t,"readonly")}_asWriteonly(t){return this._asStorage(t,"writeonly")}_asMutable(t){return this._asStorage(t,"mutable")}_asSampled(t){if(!this.usableAsSampled)throw new Error("Unusable as sampled");let r=t?.format??this.props.format;if(!Ne[r])throw new Error(`Unsupported storage texture format: ${r}`);return new er(t,this)}destroy(){this._destroyed||(this._destroyed=!0,this._texture?.destroy())}},dt={"1d":"1d","2d":"2d","2d-array":"2d_array",cube:"cube","cube-array":"cube_array","3d":"3d"},Zt=class{constructor(t,r,n){this.access=r;this._texture=n;this.dimension=t?.dimension??n.props.dimension??"2d",this._format=t?.format??n.props.format,this.texelDataType=Ne[this._format]}resourceType="texture-storage-view";texelDataType;dimension;_view;_format;get label(){return this._texture.label}$name(t){return this._texture.$name(t),this}unwrap(){return this._view||(this._view=this._texture.unwrap().createView({label:`${this.label??"<unnamed>"} - View`,format:this._format,dimension:this.dimension})),this._view}"~resolve"(t){let r=t.names.makeUnique(this.label),{group:n,binding:a}=t.allocateFixedEntry({storageTexture:this._format,access:this.access,viewDimension:this.dimension},this),o=`texture_storage_${dt[this.dimension]}`;return t.addDeclaration(`@group(${n}) @binding(${a}) var ${r}: ${o}<${this._format}, ${xn[this.access]}>;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}},pt=class{constructor(t,r,n,a){this._format=t;this.dimension=r;this.access=n;this._membership=a;this.texelDataType=Ne[this._format]}resourceType="texture-storage-view";texelDataType;get label(){return this._membership.key}"~resolve"(t){let r=t.names.makeUnique(this.label),n=t.allocateLayoutEntry(this._membership.layout),a=`texture_storage_${dt[this.dimension]}`;return t.addDeclaration(`@group(${n}) @binding(${this._membership.idx}) var ${r}: ${a}<${this._format}, ${xn[this.access]}>;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}},er=class{constructor(t,r){this._props=t;this._texture=r;this.dimension=t?.dimension??r.props.dimension??"2d",this._format=t?.format??r.props.format,this.channelDataType=fn[this._format]}resourceType="texture-sampled-view";channelDataType;dimension;_format;_view;get label(){return this._texture.label}$name(t){return this._texture.$name(t),this}unwrap(){return this._view||(this._view=this._texture.unwrap().createView({label:`${this.label??"<unnamed>"} - View`,...this._props})),this._view}"~resolve"(t){let r=t.names.makeUnique(this.label),n=(this._texture.props.sampleCount??1)>1,{group:a,binding:o}=t.allocateFixedEntry({texture:Tn[this.channelDataType.type],viewDimension:this.dimension,multisampled:n},this),s=n?"texture_multisampled_2d":`texture_${dt[this.dimension]}`;return t.addDeclaration(`@group(${a}) @binding(${o}) var ${r}: ${s}<${t.resolve(this.channelDataType)}>;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}},lt=class{constructor(t,r,n,a){this.dimension=r;this._multisampled=n;this._membership=a;this.channelDataType=yn[t]}resourceType="texture-sampled-view";channelDataType;get label(){return this._membership.key}"~resolve"(t){let r=t.names.makeUnique(this.label),n=t.allocateLayoutEntry(this._membership.layout),a=this._multisampled?"texture_multisampled_2d":`texture_${dt[this.dimension]}`;return t.addDeclaration(`@group(${n}) @binding(${this._membership.idx}) var ${r}: ${a}<${t.resolve(this.channelDataType)}>;`),r}toString(){return`${this.resourceType}:${this.label??"<unnamed>"}`}};function tr(e){return!!e?.usableAsSampled}function ua(e){return!!e?.usableAsRender}var mt=class e extends Error{constructor(t){super(`Resource '${t.label??"<unnamed>"}' cannot be bound as 'sampled'. Use .$usage('sampled') to allow it.`),Object.setPrototypeOf(this,e.prototype)}};function gt(e){return new nr(e)}function ft(e){return!!e&&e.resourceType==="bind-group-layout"}function ar(e){return!!e&&e.resourceType==="bind-group"}var rr=class e extends Error{constructor(t,r){super(`Bind group '${t??"<unnamed>"}' is missing a required binding '${r}'`),Object.setPrototypeOf(this,e.prototype)}},bn=["compute"],ve=["compute","vertex","fragment"],nr=class{constructor(t){this.entries=t;let r=0;for(let[n,a]of Object.entries(t)){if(a===null){r++;continue}let o={idx:r,key:n,layout:this};if("uniform"in a&&(this.bound[n]=new Ge("uniform",a.uniform,o)),"storage"in a){let s="type"in a.storage?a.storage:a.storage(0);this.bound[n]=new Ge(a.access??"readonly",s,o)}"texture"in a&&(this.bound[n]=new lt(a.texture,a.viewDimension??"2d",a.multisampled??!1,o)),"storageTexture"in a&&(this.bound[n]=new pt(a.storageTexture,a.viewDimension??"2d",a.access??"writeonly",o)),"externalTexture"in a&&(this.bound[n]=new ut(o)),"sampler"in a&&(a.sampler==="comparison"?this.bound[n]=new it(o):this.bound[n]=new st(o)),"texture"in a||"storageTexture"in a||"externalTexture"in a||"sampler"in a?this.value[n]=this.bound[n]:Object.defineProperty(this.value,n,{get:()=>this.bound[n].value}),r++}}_label;_index;resourceType="bind-group-layout";bound={};value={};$=this.value;toString(){return`bindGroupLayout:${this._label??"<unnamed>"}`}get label(){return this._label}get index(){return this._index}$name(t){return this._label=t,this}$idx(t){return this._index=t,this}unwrap(t){return t.device.createBindGroupLayout({label:this.label??"<unnamed>",entries:Object.values(this.entries).map((n,a)=>{if(n===null)return null;let o=n.visibility,s={binding:a,visibility:0};if("uniform"in n)o=o??ve,s.buffer={type:"uniform"};else if("storage"in n)o=o??(n.access==="mutable"?bn:ve),s.buffer={type:n.access==="mutable"?"storage":"read-only-storage"};else if("sampler"in n)o=o??ve,s.sampler={type:n.sampler};else if("texture"in n)o=o??ve,s.texture={sampleType:n.texture,viewDimension:n.viewDimension??"2d",multisampled:n.multisampled??!1};else if("storageTexture"in n){let i=n.access??"writeonly";o=o??(i==="readonly"?ve:bn),s.storageTexture={format:n.storageTexture,access:{mutable:"read-write",readonly:"read-only",writeonly:"write-only"}[i],viewDimension:n.viewDimension??"2d"}}else"externalTexture"in n&&(o=o??ve,s.externalTexture={});return o?.includes("compute")&&(s.visibility|=GPUShaderStage.COMPUTE),o?.includes("vertex")&&(s.visibility|=GPUShaderStage.VERTEX),o?.includes("fragment")&&(s.visibility|=GPUShaderStage.FRAGMENT),s}).filter(n=>n!==null)})}},De=class{constructor(t,r){this.layout=t;this.entries=r;for(let n of Object.keys(t.entries))if(t.entries[n]!==null&&!(n in r))throw new rr(t.label,n)}resourceType="bind-group";unwrap(t){return t.device.createBindGroup({label:this.layout.label??"<unnamed>",layout:t.unwrap(this.layout),entries:Object.entries(this.layout.entries).map(([n,a],o)=>{if(a===null)return null;let s=this.entries[n];if(s===void 0)throw new Error(`'${n}' is a resource required to populate bind group layout '${this.layout.label??"<unnamed>"}'.`);if("uniform"in a){let i;if(Z(s)){if(!at(s))throw new Dt(s);i={buffer:t.unwrap(s)}}else i={buffer:s};return{binding:o,resource:i}}if("storage"in a){let i;if(Z(s)){if(!de(s))throw new $e(s);i={buffer:t.unwrap(s)}}else i={buffer:s};return{binding:o,resource:i}}if("texture"in a){let i;if(q(s)){if(!tr(s))throw new mt(s);i=t.unwrap(s.createView("sampled"))}else ze(s)?i=t.unwrap(s):i=s;return{binding:o,resource:i}}if("storageTexture"in a){let i;if(q(s)){if(!de(s))throw new $e(s);a.access==="readonly"?i=t.unwrap(s.createView("readonly")):a.access==="mutable"?i=t.unwrap(s.createView("mutable")):i=t.unwrap(s.createView("writeonly"))}else je(s)?i=t.unwrap(s):i=s;return{binding:o,resource:i}}if("sampler"in a)return We(s)||Me(s)?{binding:o,resource:t.unwrap(s)}:{binding:o,resource:s};if("externalTexture"in a)return{binding:o,resource:s};throw new Error(`Malformed bind group entry: ${s} (${JSON.stringify(s)})`)}).filter(n=>n!==null)})}};var hn="#CATCHALL#",sr=class{_stack=[];_itemDepth=0;get itemDepth(){return this._itemDepth}get topItem(){let t=this._stack[this._stack.length-1];if(!t||t.type!=="item")throw new Error("Internal error, expected item layer to be on top.");return t}pushItem(){this._itemDepth++,this._stack.push({type:"item",usedSlots:new Set})}popItem(){this.pop("item")}pushSlotBindings(t){this._stack.push({type:"slotBinding",bindingMap:new WeakMap(t)})}popSlotBindings(){this.pop("slotBinding")}pushFunctionScope(t,r,n){this._stack.push({type:"functionScope",args:t,returnType:r,externalMap:n})}popFunctionScope(){this.pop("functionScope")}pushBlockScope(){this._stack.push({type:"blockScope",declarations:new Map})}popBlockScope(){this.pop("blockScope")}pop(t){let r=this._stack[this._stack.length-1];if(!r||t&&r.type!==t)throw new Error(`Internal error, expected a ${t} layer to be on top.`);this._stack.pop(),t==="item"&&this._itemDepth--}readSlot(t){for(let r=this._stack.length-1;r>=0;--r){let n=this._stack[r];if(n?.type==="item")n.usedSlots.add(t);else if(n?.type==="slotBinding"){let a=n.bindingMap.get(t);if(a!==void 0)return a}else if(!(n?.type==="functionScope"||n?.type==="blockScope"))throw new Error("Unknown layer type.")}return t.defaultValue}getSnippetById(t){for(let r=this._stack.length-1;r>=0;--r){let n=this._stack[r];if(n?.type==="functionScope"){let a=n.args.find(s=>s.value===t);if(a!==void 0)return a;let o=n.externalMap[t];return o!==void 0?{value:o,dataType:z(o)?he(o):A}:void 0}if(n?.type==="blockScope"){let a=n.declarations.get(t);if(a!==void 0)return{value:t,dataType:a}}}}defineBlockVariable(t,r){for(let n=this._stack.length-1;n>=0;--n){let a=this._stack[n];if(a?.type==="blockScope")return a.declarations.set(t,r),{value:t,dataType:r}}throw new Error("No block scope found to define a variable in.")}},Tt=[""," "," "," "," "," "," "," "," "],or=Tt.length-1,ir=class{identLevel=0;get pre(){return Tt[this.identLevel]??Tt[or].repeat(this.identLevel/or)+Tt[this.identLevel%or]}indent(){let t=this.pre;return this.identLevel++,t}dedent(){return this.identLevel--,this.pre}},ur=class{_memoizedResolves=new WeakMap;_memoizedDerived=new WeakMap;_indentController=new ir;_jitTranspiler;_itemStateStack=new sr;_declarations=[];[y]={itemStateStack:this._itemStateStack};bindGroupLayoutsToPlaceholderMap=new Map;_nextFreeLayoutPlaceholderIdx=0;fixedBindings=[];callStack=[];names;constructor(t){this.names=t.names,this._jitTranspiler=t.jitTranspiler}get pre(){return this._indentController.pre}indent(){return this._indentController.indent()}dedent(){return this._indentController.dedent()}getById(t){let r=this._itemStateStack.getSnippetById(t);return r===void 0?null:r}defineVariable(t,r){return this._itemStateStack.defineBlockVariable(t,r)}pushBlockScope(){this._itemStateStack.pushBlockScope()}popBlockScope(){this._itemStateStack.popBlockScope()}transpileFn(t){if(!this._jitTranspiler)throw new Error("Tried to execute a tgpu.fn function without providing a JIT transpiler, or transpiling at build time.");return this._jitTranspiler.transpileFn(t)}fnToWgsl(t){this._itemStateStack.pushFunctionScope(t.args,t.returnType,t.externalMap);try{return{head:pr(this,t.args,t.returnType),body:rn(this,t.body)}}finally{this._itemStateStack.popFunctionScope()}}addDeclaration(t){this._declarations.push(t)}allocateLayoutEntry(t){let r=this.bindGroupLayoutsToPlaceholderMap,n=r.get(t);return n||(n=`#BIND_GROUP_LAYOUT_${this._nextFreeLayoutPlaceholderIdx++}#`,r.set(t,n)),n}allocateFixedEntry(t,r){let n=this.fixedBindings.length;return this.fixedBindings.push({layoutEntry:t,resource:r}),{group:hn,binding:n}}readSlot(t){let r=this._itemStateStack.readSlot(t);if(r===void 0)throw new vt(t);return r}withSlots(t,r){this._itemStateStack.pushSlotBindings(t);try{return r()}finally{this._itemStateStack.popSlotBindings()}}unwrap(t){if(Ve(t))return this.withSlots(t["~providing"].pairs,()=>this.unwrap(t["~providing"].inner));let r=t;for(;;)if(E(r))r=this.readSlot(r);else if(k(r))r=this._getOrCompute(r);else break;return r}_getOrCompute(t){let r=this._memoizedDerived.get(t)??[];this._itemStateStack.pushItem();try{for(let o of r)if([...o.slotToValueMap.entries()].every(([i,p])=>i.areEqual(this._itemStateStack.readSlot(i),p)))return o.result;At(Be.CPU);let n;try{n=t["~compute"]()}finally{Ut(Be.CPU)}let a=new Map;for(let o of this._itemStateStack.topItem.usedSlots)a.set(o,this._itemStateStack.readSlot(o));return r.push({slotToValueMap:a,result:n}),this._memoizedDerived.set(t,r),n}catch(n){throw n instanceof me?n.appendToTrace(t):new me(n,[t])}finally{this._itemStateStack.popItem()}}_getOrInstantiate(t){let r=this._memoizedResolves.get(t)??[];this._itemStateStack.pushItem();try{for(let o of r)if([...o.slotToValueMap.entries()].every(([i,p])=>i.areEqual(this._itemStateStack.readSlot(i),p)))return o.result;let n;_(t)?n=Gt(this,t):k(t)||E(t)?n=this.resolve(this.unwrap(t)):Vt(t)?n=t["~resolve"](this):n=this.resolveValue(t);let a=new Map;for(let o of this._itemStateStack.topItem.usedSlots)a.set(o,this._itemStateStack.readSlot(o));return r.push({slotToValueMap:a,result:n}),this._memoizedResolves.set(t,r),n}catch(n){throw n instanceof me?n.appendToTrace(t):new me(n,[t])}finally{this._itemStateStack.popItem()}}resolve(t){if(Ve(t))return this.withSlots(t["~providing"].pairs,()=>this.resolve(t["~providing"].inner));if(t&&typeof t=="object"||typeof t=="function"){if(this._itemStateStack.itemDepth===0)try{At(Be.GPU);let r=Dr(this,()=>this._getOrInstantiate(t));return`${[...this._declarations].join(`
20
+ ${p}`:`${e.pre}if (${s})
21
+ ${i}`}if(t[0]===x.let||t[0]===x.const){let[r,n,a]=t,o=a?I(e,a):void 0;if(!o||!a)throw new Error("Cannot create variable without an initial value.");if(xe(o.dataType))throw new Error("Cannot create variable with loose data type.");pa(e,n,o.dataType);let s=D(e,sr(e,n));if(typeof a=="object"&&a[0]===x.objectExpr&&h(e.callStack[e.callStack.length-1])){let i=e.resolve(e.callStack[e.callStack.length-1]);return`${e.pre}var ${s} = ${i}(${D(e,o)});`}return`${e.pre}var ${s} = ${D(e,o)};`}if(t[0]===x.block)return xn(e,t);if(t[0]===x.for){let[r,n,a,o,s]=t,i=n?me(e,n):void 0,p=i?i.slice(0,-1):"",u=a?I(e,a):void 0,d=u?D(e,u):"",m=o?me(e,o):void 0,T=m?m.slice(0,-1):"";e.indent();let f=me(e,s);return e.dedent(),`${e.pre}for (${p}; ${d}; ${T})
22
+ ${f}`}if(t[0]===x.while){let[r,n,a]=t,o=D(e,I(e,n));e.indent();let s=me(e,a);return e.dedent(),`${e.pre}while (${o})
23
+ ${s}`}return t[0]===x.continue?`${e.pre}continue;`:t[0]===x.break?`${e.pre}break;`:`${e.pre}${D(e,I(e,t))};`}function bn(e,t){return xn(e,t)}var hn="#CATCHALL#",ur=class{_stack=[];_itemDepth=0;get itemDepth(){return this._itemDepth}get topItem(){let t=this._stack[this._stack.length-1];if(!t||t.type!=="item")throw new Error("Internal error, expected item layer to be on top.");return t}pushItem(){this._itemDepth++,this._stack.push({type:"item",usedSlots:new Set})}popItem(){this.pop("item")}pushSlotBindings(t){this._stack.push({type:"slotBinding",bindingMap:new WeakMap(t)})}popSlotBindings(){this.pop("slotBinding")}pushFunctionScope(t,r,n){this._stack.push({type:"functionScope",args:t,returnType:r,externalMap:n})}popFunctionScope(){this.pop("functionScope")}pushBlockScope(){this._stack.push({type:"blockScope",declarations:new Map})}popBlockScope(){this.pop("blockScope")}pop(t){let r=this._stack[this._stack.length-1];if(!r||t&&r.type!==t)throw new Error(`Internal error, expected a ${t} layer to be on top.`);this._stack.pop(),t==="item"&&this._itemDepth--}readSlot(t){for(let r=this._stack.length-1;r>=0;--r){let n=this._stack[r];if(n?.type==="item")n.usedSlots.add(t);else if(n?.type==="slotBinding"){let a=n.bindingMap.get(t);if(a!==void 0)return a}else if(!(n?.type==="functionScope"||n?.type==="blockScope"))throw new Error("Unknown layer type.")}return t.defaultValue}getSnippetById(t){for(let r=this._stack.length-1;r>=0;--r){let n=this._stack[r];if(n?.type==="functionScope"){let a=n.args.find(s=>s.value===t);if(a!==void 0)return a;let o=n.externalMap[t];return o!==void 0?{value:o,dataType:K(o)?we(o):U}:void 0}if(n?.type==="blockScope"){let a=n.declarations.get(t);if(a!==void 0)return{value:t,dataType:a}}}}defineBlockVariable(t,r){for(let n=this._stack.length-1;n>=0;--n){let a=this._stack[n];if(a?.type==="blockScope")return a.declarations.set(t,r),{value:t,dataType:r}}throw new Error("No block scope found to define a variable in.")}},yt=[""," "," "," "," "," "," "," "," "],ir=yt.length-1,pr=class{identLevel=0;get pre(){return yt[this.identLevel]??yt[ir].repeat(this.identLevel/ir)+yt[this.identLevel%ir]}indent(){let t=this.pre;return this.identLevel++,t}dedent(){return this.identLevel--,this.pre}},lr=class{_memoizedResolves=new WeakMap;_memoizedDerived=new WeakMap;_indentController=new pr;_jitTranspiler;_itemStateStack=new ur;_declarations=[];[y]={itemStateStack:this._itemStateStack};bindGroupLayoutsToPlaceholderMap=new Map;_nextFreeLayoutPlaceholderIdx=0;fixedBindings=[];callStack=[];names;constructor(t){this.names=t.names,this._jitTranspiler=t.jitTranspiler}get pre(){return this._indentController.pre}indent(){return this._indentController.indent()}dedent(){return this._indentController.dedent()}getById(t){let r=this._itemStateStack.getSnippetById(t);return r===void 0?null:r}defineVariable(t,r){return this._itemStateStack.defineBlockVariable(t,r)}pushBlockScope(){this._itemStateStack.pushBlockScope()}popBlockScope(){this._itemStateStack.popBlockScope()}transpileFn(t){if(!this._jitTranspiler)throw new Error("Tried to execute a tgpu.fn function without providing a JIT transpiler, or transpiling at build time.");return this._jitTranspiler.transpileFn(t)}fnToWgsl(t){this._itemStateStack.pushFunctionScope(t.args,t.returnType,t.externalMap);try{return{head:dr(this,t.args,t.returnType),body:bn(this,t.body)}}finally{this._itemStateStack.popFunctionScope()}}addDeclaration(t){this._declarations.push(t)}allocateLayoutEntry(t){let r=this.bindGroupLayoutsToPlaceholderMap,n=r.get(t);return n||(n=`#BIND_GROUP_LAYOUT_${this._nextFreeLayoutPlaceholderIdx++}#`,r.set(t,n)),n}allocateFixedEntry(t,r){let n=this.fixedBindings.length;return this.fixedBindings.push({layoutEntry:t,resource:r}),{group:hn,binding:n}}readSlot(t){let r=this._itemStateStack.readSlot(t);if(r===void 0)throw new Dt(t);return r}withSlots(t,r){this._itemStateStack.pushSlotBindings(t);try{return r()}finally{this._itemStateStack.popSlotBindings()}}unwrap(t){if(Ve(t))return this.withSlots(t["~providing"].pairs,()=>this.unwrap(t["~providing"].inner));let r=t;for(;;)if($(r))r=this.readSlot(r);else if(k(r))r=this._getOrCompute(r);else break;return r}_getOrCompute(t){let r=this._memoizedDerived.get(t)??[];this._itemStateStack.pushItem();try{for(let o of r)if([...o.slotToValueMap.entries()].every(([i,p])=>i.areEqual(this._itemStateStack.readSlot(i),p)))return o.result;Ut(Re.CPU);let n;try{n=t["~compute"]()}finally{It(Re.CPU)}let a=new Map;for(let o of this._itemStateStack.topItem.usedSlots)a.set(o,this._itemStateStack.readSlot(o));return r.push({slotToValueMap:a,result:n}),this._memoizedDerived.set(t,r),n}catch(n){throw n instanceof ge?n.appendToTrace(t):new ge(n,[t])}finally{this._itemStateStack.popItem()}}_getOrInstantiate(t){let r=this._memoizedResolves.get(t)??[];this._itemStateStack.pushItem();try{for(let o of r)if([...o.slotToValueMap.entries()].every(([i,p])=>i.areEqual(this._itemStateStack.readSlot(i),p)))return o.result;let n;L(t)?n=Mt(this,t):k(t)||$(t)?n=this.resolve(this.unwrap(t)):$t(t)?n=t["~resolve"](this):n=this.resolveValue(t);let a=new Map;for(let o of this._itemStateStack.topItem.usedSlots)a.set(o,this._itemStateStack.readSlot(o));return r.push({slotToValueMap:a,result:n}),this._memoizedResolves.set(t,r),n}catch(n){throw n instanceof ge?n.appendToTrace(t):new ge(n,[t])}finally{this._itemStateStack.popItem()}}resolve(t){if(Ve(t))return this.withSlots(t["~providing"].pairs,()=>this.resolve(t["~providing"].inner));if(t&&typeof t=="object"||typeof t=="function"){if(this._itemStateStack.itemDepth===0)try{Ut(Re.GPU);let r=Ar(this,()=>this._getOrInstantiate(t));return`${[...this._declarations].join(`
24
24
 
25
- `)}${r}`}finally{Ut(Be.GPU)}return this._getOrInstantiate(t)}return String(t)}resolveValue(t,r){if(z(t))return this.resolve(t);if(r&&G(r))return`array(${t.map(n=>this.resolveValue(n,r.elementType))})`;if(Array.isArray(t))return`array(${t.map(n=>this.resolveValue(n))})`;if(r&&b(r))return`${this.resolve(r)}(${Object.entries(r.propTypes).map(([n,a])=>this.resolveValue(t[n],a))})`;throw new Error(`Value ${t} (as json: ${JSON.stringify(t)}) of schema ${r} is not resolvable to WGSL`)}};function Fe(e,t){let r=new ur(t),n=r.resolve(e),a=r.bindGroupLayoutsToPlaceholderMap,o=[],s=new Set([...a.keys()].map(m=>m.index).filter(m=>m!==void 0)),i=Fr(s),p=r.fixedBindings.map((m,T)=>[String(T),m.layoutEntry]),u=()=>{let m=i.next().value,T=gt(Object.fromEntries(p));return o[m]=T,n=n.replaceAll(hn,String(m)),[m,new De(T,Object.fromEntries(r.fixedBindings.map((f,g)=>[String(g),f.resource])))]},d=p.length>0?u():null;for(let[m,T]of a.entries()){let f=m.index??i.next().value;o[f]=m,n=n.replaceAll(T,String(f))}return{code:n,bindGroupLayouts:o,catchall:d}}function pr(e,t,r){let n=t.map(a=>`${a.value}: ${e.resolve(a.dataType)}`).join(", ");return r!==void 0?`(${n}) -> ${xe(r)} ${e.resolve(r)}`:`(${n})`}function ee(e,t){let r=[];return typeof t=="string"&&(e.isEntry?(Array.isArray(e.argTypes)&&b(e.argTypes[0])&&r.push({In:e.argTypes[0]}),b(e.returnType)&&r.push({Out:e.returnType})):Array.isArray(e.argTypes)&&(zr(t,Array.isArray(e.argTypes)?e.argTypes:Object.values(e.argTypes),n=>r.push(n)),we(t,e.returnType,n=>r.push(n)))),{label:void 0,applyExternals(n){r.push(n)},resolve(n,a=""){let o={};for(let i of r)K(o,i);let s=n.names.makeUnique(this.label);if(typeof t=="string"){let i="";if(!e.isEntry)i=Array.isArray(e.argTypes)?"":pr(n,Object.entries(e.argTypes).map(([u,d])=>({value:u,dataType:d})),e.returnType);else{let u=Array.isArray(e.argTypes)&&b(e.argTypes[0])?"(in: In)":"()",d=C(e.returnType)?xe(e.returnType):"",m=e.returnType!==void 0?b(e.returnType)?"-> Out":`-> ${d!==""?d:"@location(0)"} ${n.resolve(e.returnType)}`:"";i=`${u} ${m} `}let p=ue(n,o,`${i}${t.trim()}`);n.addDeclaration(`${a}fn ${s}${p}`)}else{let i=Hr(t);if(i?.externals){let f=Object.fromEntries(Object.entries(i.externals).filter(([g])=>!(g in o)));K(o,f)}let p=i?.ast??n.transpileFn(String(t));p.argNames.type==="destructured-object"&&K(o,Object.fromEntries(p.argNames.props.map(({prop:f,alias:g})=>[g,f]))),!Array.isArray(e.argTypes)&&p.argNames.type==="identifiers"&&p.argNames.names[0]!==void 0&&K(o,{[p.argNames.names[0]]:Object.fromEntries(Object.keys(e.argTypes).map(f=>[f,f]))});let u=p.externalNames.filter(f=>!(f in o));if(u.length>0)throw new Ft(this.label,u);let d=Array.isArray(e.argTypes)?p.argNames.type==="identifiers"?e.argTypes.map((f,g)=>({value:(p.argNames.type==="identifiers"?p.argNames.names[g]:void 0)??`arg_${g}`,dataType:f})):[]:Object.entries(e.argTypes).map(([f,g])=>({value:f,dataType:g})),{head:m,body:T}=n.fnToWgsl({args:d,returnType:e.returnType,body:p.body,externalMap:o});n.addDeclaration(`${a}fn ${s}${n.resolve(m)}${n.resolve(T)}`)}return s}}}function wn(e){let t=0;return Object.fromEntries(Object.entries(e).map(([r,n])=>{if(Xe(n))return[r,n];let a=Q(n);return a!==void 0?(t=a+1,[r,n]):[r,Vr(n,{type:"@location",value:t++})]}))}function yt(e){return _(e)?Q(e)!==void 0?e:Er(0,e):Ct(wn(e))}function Ae(e){return Ct(wn(e))}function te(e,...t){return pa(e)?la(e,...t):e}function pa(e){return Array.isArray(e)&&"raw"in e&&Array.isArray(e.raw)&&e.raw.every(t=>typeof t=="string")}function la(e,...t){return e.slice(1).reduce((r,n,a)=>`${r}${t[a]}${n}`,e[0])}function Sn(e){let t={argTypes:e.in&&Object.keys(e.in).length!==0?[Ae(e.in)]:[],returnType:void 0,workgroupSize:[e.workgroupSize[0]??1,e.workgroupSize[1]??1,e.workgroupSize[2]??1],isEntry:!0},r=(n,...a)=>da(t,e.workgroupSize,te(n,...a));return Object.assign(Object.assign(r,t),{does:r})}function da(e,t,r){let n=ee(e,r),a=e.argTypes[0];return{shell:e,get label(){return n.label},$uses(o){return n.applyExternals(o),this},$name(o){return n.label=o,N(a)&&a.$name(`${o}_Input`),this},"~resolve"(o){return n.resolve(o,`@compute @workgroup_size(${t.join(", ")}) `)},toString(){return`computeFn:${this.label??"<unnamed>"}`}}}function vn(e,t){let r={argTypes:e,returnType:t,isEntry:!1},n=(a,...o)=>ga(r,te(a,...o));return Object.assign(Object.assign(n,r),{does:n})}function lr(e){return e?.resourceType==="function"}function ma([e,t]){return`${e.label??"<unnamed>"}=${t}`}function ga(e,t){let r=ee(e,t),n={shell:e,resourceType:"function",$uses(s){return r.applyExternals(s),this},$name(s){return r.label=s,this},with(s,i){return Dn(o,[[ie(s)?s.slot:s,i]])},"~resolve"(s){if(typeof t=="string")return r.resolve(s);let i=s;if(i.callStack===void 0)throw new Error("Cannot resolve a TGSL function outside of a generation context");try{return i.callStack.push(e.returnType),r.resolve(s)}finally{i.callStack.pop()}}},a=It((...s)=>{if(typeof t=="string")throw new Error("Cannot execute on the CPU functions constructed with raw WGSL");return t(...s)},(...s)=>({value:new ct(o,s.map(i=>i.value)),dataType:e.returnType??A}));a[y].implementation=t;let o=Object.assign(a,n);return Object.defineProperty(o,"label",{get:()=>r.label}),Object.defineProperty(o,"toString",{value:()=>`fn:${r.label??"<unnamed>"}`}),o}function Dn(e,t){let r={resourceType:"function",shell:e.shell,"~providing":{inner:e,pairs:t},$uses(o){return e.$uses(o),this},$name(o){return e.$name(o),this},with(o,s){return Dn(a,[...t,[ie(o)?o.slot:o,s]])}},n=It((...o)=>e(...o),(...o)=>({value:new ct(a,o.map(s=>s.value)),dataType:e.shell.returnType??A})),a=Object.assign(n,r);return Object.defineProperty(a,"label",{get:()=>e.label}),Object.defineProperty(a,"toString",{value(){return`fn:${e.label??"<unnamed>"}[${t.map(ma).join(", ")}]`}}),a[y].implementation=e[y].implementation,a}var ct=class{constructor(t,r){this._fn=t;this._params=r}get label(){return this._fn.label}"~resolve"(t){return t.resolve(`${t.resolve(this._fn)}(${this._params.map(r=>t.resolve(r)).join(", ")})`)}toString(){return`call:${this.label??"<unnamed>"}`}};function Fn(e){let t={argTypes:e.in&&Object.keys(e.in).length!==0?[Ae(e.in)]:[],targets:e.out,returnType:Object.keys(e.out).length!==0?yt(e.out):void 0,isEntry:!0},r=(n,...a)=>fa(t,te(n,...a));return Object.assign(Object.assign(r,t),{does:r})}function fa(e,t){let r=ee(e,t),n=e.returnType,a=e.argTypes[0];return typeof t=="string"&&we(t,n,s=>r.applyExternals(s)),{shell:e,outputType:n,get label(){return r.label},$uses(s){return r.applyExternals(s),this},$name(s){return r.label=s,N(n)&&n.$name(`${s}_Output`),N(a)&&a.$name(`${s}_Input`),this},"~resolve"(s){if(typeof t=="string")return r.resolve(s,"@fragment ");let i=s;if(i.callStack===void 0)throw new Error("Cannot resolve a TGSL function outside of a generation context");try{return i.callStack.push(n),r.resolve(s,"@fragment ")}finally{i.callStack.pop()}},toString(){return`fragmentFn:${this.label??"<unnamed>"}`}}}function An(e){let t={attributes:[e.in??{}],returnType:Object.keys(e.out).length!==0?yt(e.out):void 0,argTypes:e.in&&Object.keys(e.in).length!==0?[Ae(e.in)]:[],isEntry:!0},r=(n,...a)=>Ta(t,te(n,...a));return Object.assign(Object.assign(r,t),{does:r})}function Ta(e,t){let r=ee(e,t),n=e.returnType,a=e.argTypes[0];return typeof t=="string"&&we(t,n,o=>r.applyExternals(o)),{shell:e,outputType:n,inputType:a,get label(){return r.label},$uses(o){return r.applyExternals(o),this},$name(o){return r.label=o,N(n)&&n.$name(`${o}_Output`),N(a)&&a.$name(`${o}_Input`),this},"~resolve"(o){if(typeof t=="string")return r.resolve(o,"@vertex ");let s=o;if(s.callStack===void 0)throw new Error("Cannot resolve a TGSL function outside of a generation context");try{return s.callStack.push(n),r.resolve(o,"@vertex ")}finally{s.callStack.pop()}},toString(){return`vertexFn:${this.label??"<unnamed>"}`}}}var re=class{lastUniqueId=0;makeUnique(t){let r;return t?(r=t.replaceAll(/\s/g,"_"),r=r.replaceAll(/[^\w\d]/g,"")):r="item",`${r}_${this.lastUniqueId++}`}},ne=class{_usedNames=new Set;makeUnique(t){if(t===void 0)throw new Error("Unnamed item found when using a strict name registry");let r=0,n=t;for(;this._usedNames.has(n);)r++,n=`${t}_${r}`;return this._usedNames.add(n),n}};function Un(e){let{externals:t,template:r,names:n,unstable_jitTranspiler:a}=e,o={};K(o,t??{});let s={"~resolve"(p){return ue(p,o,r??"")},toString:()=>"<root>"},{code:i}=Fe(s,{names:n==="strict"?new ne:new re,jitTranspiler:a});return i}var Ke=class{constructor(t){this._make=t}_map=new WeakMap;getOrMake(t,...r){if(this._map.has(t))return this._map.get(t);let n=this._make(t,...r);return this._map.set(t,n),n}};function In(e,t,r){return new dr(new mr(e,t,r),{})}function Bn(e){return e?.resourceType==="compute-pipeline"}var dr=class e{constructor(t,r){this._core=t;this._priors=r}resourceType="compute-pipeline";get label(){return this._core.label}get rawPipeline(){return this._core.unwrap().pipeline}with(t,r){return new e(this._core,{bindGroupLayoutMap:new Map([...this._priors.bindGroupLayoutMap??[],[t,r]])})}dispatchWorkgroups(t,r,n){let a=this._core.unwrap(),{branch:o,label:s}=this._core,i=o.commandEncoder.beginComputePass({label:s??"<unnamed>"});i.setPipeline(a.pipeline);let p=new Set(a.bindGroupLayouts);if(a.bindGroupLayouts.forEach((u,d)=>{if(a.catchall&&d===a.catchall[0])i.setBindGroup(d,o.unwrap(a.catchall[1])),p.delete(u);else{let m=this._priors.bindGroupLayoutMap?.get(u);m!==void 0&&(p.delete(u),i.setBindGroup(d,o.unwrap(m)))}}),p.size>0)throw new ae(p);i.dispatchWorkgroups(t,r,n),i.end()}$name(t){return this._core.label=t,this}},mr=class{constructor(t,r,n){this.branch=t;this._slotBindings=r;this._entryFn=n}label;_memo;unwrap(){if(this._memo===void 0){let t=this.branch.device,{code:r,bindGroupLayouts:n,catchall:a}=Fe({"~resolve":o=>(o.withSlots(this._slotBindings,()=>{o.resolve(this._entryFn)}),""),toString:()=>`computePipeline:${this.label??"<unnamed>"}`},{names:this.branch.nameRegistry,jitTranspiler:this.branch.jitTranspiler});a!==null&&n[a[0]]?.$name(`${this.label??"<unnamed>"} - Automatic Bind Group & Layout`),this._memo={pipeline:t.createComputePipeline({label:this.label??"<unnamed>",layout:t.createPipelineLayout({label:`${this.label??"<unnamed>"} - Pipeline Layout`,bindGroupLayouts:n.map(o=>this.branch.unwrap(o))}),compute:{module:t.createShaderModule({label:`${this.label??"<unnamed>"} - Shader`,code:r})}}),bindGroupLayouts:n,catchall:a}}return this._memo}};function Tr(e,t="vertex"){return new fr(e,t)}function bt(e){return e?.resourceType==="vertex-layout"}var gr=Symbol("defaultAttribEntry");function xt(e,t,r,n,a){if(ye(t)||Cr(t)){let o=Q(t);return o!==void 0&&(n[a??gr]=o),xt(e,t.inner,V(r,W(t)),n)}if(b(t)){let o=r;return Object.fromEntries(Object.entries(t.propTypes).map(([s,i])=>{o=V(o,F(i));let p=[s,xt(e,i,o,n,s)];return o+=c(i),p}))}if(Y(t)){let o=r;return Object.fromEntries(Object.entries(t.propTypes).map(([s,i])=>{o=V(o,W(i));let p=[s,xt(e,i,o,n,s)];return o+=c(i),p}))}if("type"in t&&typeof t.type=="string"){if(_r.includes(t.type))return{_layout:e,format:t.type,offset:r};let o=Lr[t.type];if(o)return{_layout:e,format:o,offset:r}}throw new Error(`Unsupported data used in vertex layout: ${String(t)}`)}var fr=class{constructor(t,r){this.schemaForCount=t;this.stepMode=r;let n=t(0);this.stride=V(c(n.elementType),F(n)),this.attrib=xt(this,n.elementType,0,this._customLocationMap)}resourceType="vertex-layout";stride;attrib;_customLocationMap={};_label;get label(){return this._label}get vertexLayout(){if(this._customLocationMap[gr]!==void 0){if(typeof this.attrib.format!="string"||typeof this.attrib.offset!="number")throw new Error("Single attribute vertex layouts must have a format and offset.");return{arrayStride:this.stride,stepMode:this.stepMode,attributes:[{format:this.attrib.format,offset:this.attrib.offset,shaderLocation:this._customLocationMap[gr]}]}}if(!Object.keys(this.attrib).every(r=>this._customLocationMap[r]!==void 0))throw new Error("All attributes must have custom locations in order to unwrap a vertex layout.");return{arrayStride:this.stride,stepMode:this.stepMode,attributes:[...Object.entries(this.attrib).map(([r,n])=>({format:n.format,offset:n.offset,shaderLocation:this._customLocationMap[r]}))]}}$name(t){return this._label=t,this}};function ya(e){return typeof e?.loadOp=="string"}function Rn(e,t){if(_(e)){if(!ya(t))throw new Error("Expected a single color attachment, not a record.");return[t]}let r=[];for(let n of Object.keys(e)){let a=t[n];if(!a)throw new Error(`A color attachment by the name of '${n}' was not provided to the shader.`);r.push(a)}return r}function ca(e){return typeof e?.format=="string"}function Pn(e,t){if(_(e)){if(!ca(t))throw new Error("Expected a single color target configuration, not a record.");return[t]}let r=[];for(let n of Object.keys(e)){let a=t[n];if(!a)throw new Error(`A color target by the name of '${n}' was not provided to the shader.`);r.push(a)}return r}function _n(e){return new yr(new cr(e),{})}function Ln(e){return e?.resourceType==="render-pipeline"}var yr=class e{constructor(t,r){this.core=t;this.priors=r}resourceType="render-pipeline";get label(){return this.core.label}$name(t){return this.core.label=t,this}with(t,r){if(ft(t))return new e(this.core,{...this.priors,bindGroupLayoutMap:new Map([...this.priors.bindGroupLayoutMap??[],[t,r]])});if(bt(t))return new e(this.core,{...this.priors,vertexLayoutMap:new Map([...this.priors.vertexLayoutMap??[],[t,r]])});throw new Error("Unsupported value passed into .with()")}withColorAttachment(t){return new e(this.core,{...this.priors,colorAttachment:t})}withDepthStencilAttachment(t){return new e(this.core,{...this.priors,depthStencilAttachment:t})}draw(t,r,n,a){let o=this.core.unwrap(),{branch:s,fragmentFn:i}=this.core.options,u={colorAttachments:Rn(i.shell.targets,this.priors.colorAttachment??{}).map(g=>q(g.view)?{...g,view:s.unwrap(g.view).createView()}:g)};if(this.core.label!==void 0&&(u.label=this.core.label),this.priors.depthStencilAttachment!==void 0){let g=this.priors.depthStencilAttachment;q(g.view)?u.depthStencilAttachment={...g,view:s.unwrap(g.view).createView()}:u.depthStencilAttachment=g}let d=s.commandEncoder.beginRenderPass(u);d.setPipeline(o.pipeline);let m=new Set(o.bindGroupLayouts);o.bindGroupLayouts.forEach((g,D)=>{if(o.catchall&&D===o.catchall[0])d.setBindGroup(D,s.unwrap(o.catchall[1])),m.delete(g);else{let S=this.priors.bindGroupLayoutMap?.get(g);S!==void 0&&(m.delete(g),d.setBindGroup(D,s.unwrap(S)))}});let T=new Set(this.core.usedVertexLayouts);if(this.core.usedVertexLayouts.forEach((g,D)=>{let S=this.priors.vertexLayoutMap?.get(g);S&&(T.delete(g),d.setVertexBuffer(D,s.unwrap(S)))}),m.size>0)throw new ae(m);if(T.size>0)throw new Ie(T);d.draw(t,r,n,a),d.end(),s.flush()}},cr=class{constructor(t){this.options=t;let r=Xr(t.vertexFn.shell.attributes[0],t.vertexAttribs);this._vertexBufferLayouts=r.bufferDefinitions,this.usedVertexLayouts=r.usedVertexLayouts,this._targets=Pn(t.fragmentFn.shell.targets,t.targets)}label;usedVertexLayouts;_memo;_vertexBufferLayouts;_targets;unwrap(){if(this._memo===void 0){let{branch:t,vertexFn:r,fragmentFn:n,slotBindings:a,primitiveState:o,depthStencilState:s,multisampleState:i}=this.options,{code:p,bindGroupLayouts:u,catchall:d}=Fe({"~resolve":g=>(g.withSlots(a,()=>{g.resolve(r),g.resolve(n)}),""),toString:()=>`renderPipeline:${this.label??"<unnamed>"}`},{names:t.nameRegistry,jitTranspiler:t.jitTranspiler});d!==null&&u[d[0]]?.$name(`${this.label??"<unnamed>"} - Automatic Bind Group & Layout`);let m=t.device,T=m.createShaderModule({label:`${this.label??"<unnamed>"} - Shader`,code:p}),f={layout:m.createPipelineLayout({label:`${this.label??"<unnamed>"} - Pipeline Layout`,bindGroupLayouts:u.map(g=>t.unwrap(g))}),vertex:{module:T,buffers:this._vertexBufferLayouts},fragment:{module:T,targets:this._targets}};this.label!==void 0&&(f.label=this.label),o&&(f.primitive=o),s&&(f.depthStencil=s),i&&(f.multisample=i),this._memo={pipeline:m.createRenderPipeline(f),bindGroupLayouts:u,catchall:d}}return this._memo}};var xr=class e{constructor(t,r){this._getRoot=t;this._slotBindings=r}with(t,r){return new e(this._getRoot,[...this._slotBindings,[ie(t)?t.slot:t,r]])}withCompute(t){return new br(this._getRoot(),this._slotBindings,t)}withVertex(t,r){return new hr({branch:this._getRoot(),primitiveState:void 0,depthStencilState:void 0,slotBindings:this._slotBindings,vertexFn:t,vertexAttribs:r,multisampleState:void 0})}},br=class{constructor(t,r,n){this._root=t;this._slotBindings=r;this._entryFn=n}createPipeline(){return In(this._root,this._slotBindings,this._entryFn)}},hr=class{constructor(t){this._options=t}withFragment(t,r,n){return Ue(typeof t!="string","Just type mismatch validation"),Ue(typeof r!="string","Just type mismatch validation"),new wr({...this._options,fragmentFn:t,targets:r})}},wr=class e{constructor(t){this._options=t}withPrimitive(t){return new e({...this._options,primitiveState:t})}withDepthStencil(t){return new e({...this._options,depthStencilState:t})}withMultisample(t){return new e({...this._options,multisampleState:t})}createPipeline(){return _n(this._options)}},ht=class extends xr{constructor(r,n,a,o){super(()=>this,[]);this.device=r;this.nameRegistry=n;this.jitTranspiler=a;this._ownDevice=o;this["~unstable"]=this}"~unstable";_disposables=[];_unwrappedBindGroupLayouts=new Ke(r=>r.unwrap(this));_unwrappedBindGroups=new Ke(r=>r.unwrap(this));_commandEncoder=null;get commandEncoder(){return this._commandEncoder||(this._commandEncoder=this.device.createCommandEncoder()),this._commandEncoder}createBuffer(r,n){let a=dn(this,r,n);return this._disposables.push(a),a}createUniform(r,n){return this.createBuffer(r,n).$usage("uniform").as("uniform")}createMutable(r,n){return this.createBuffer(r,n).$usage("storage").as("mutable")}createReadonly(r,n){return this.createBuffer(r,n).$usage("storage").as("readonly")}createBindGroup(r,n){return new De(r,n)}destroy(){for(let r of this._disposables)r.destroy();this._ownDevice&&this.device.destroy()}createTexture(r){let n=cn(r,this);return this._disposables.push(n),n}unwrap(r){if(Bn(r))return r.rawPipeline;if(Ln(r))return r.core.unwrap().pipeline;if(ft(r))return this._unwrappedBindGroupLayouts.getOrMake(r);if(ar(r))return this._unwrappedBindGroups.getOrMake(r);if(Z(r))return r.buffer;if(q(r)||je(r)||ze(r))return r.unwrap();if(bt(r))return r.vertexLayout;if(We(r)){if("unwrap"in r)return r.unwrap(this);throw new Error("Cannot unwrap laid-out sampler.")}if(Me(r)){if("unwrap"in r)return r.unwrap(this);throw new Error("Cannot unwrap laid-out comparison sampler.")}throw new Error(`Unknown resource type: ${r}`)}beginRenderPass(r,n){let a=this.commandEncoder.beginRenderPass(r),o=new Map,s=new Map,i,p=()=>{if(!i)throw new Error("Cannot draw without a call to pass.setPipeline");let{core:u,priors:d}=i,m=u.unwrap();a.setPipeline(m.pipeline);let T=new Set(m.bindGroupLayouts);m.bindGroupLayouts.forEach((g,D)=>{if(m.catchall&&D===m.catchall[0])a.setBindGroup(D,this.unwrap(m.catchall[1])),T.delete(g);else{let S=d.bindGroupLayoutMap?.get(g)??o.get(g);S!==void 0&&(T.delete(g),ar(S)?a.setBindGroup(D,this.unwrap(S)):a.setBindGroup(D,S))}});let f=new Set;if(u.usedVertexLayouts.forEach((g,D)=>{let S=d.vertexLayoutMap?.get(g),I=S?{buffer:S,offset:void 0,size:void 0}:s.get(g);!I||!I.buffer?f.add(g):Z(I.buffer)?a.setVertexBuffer(D,this.unwrap(I.buffer),I.offset,I.size):a.setVertexBuffer(D,I.buffer,I.offset,I.size)}),T.size>0)throw new ae(T);if(f.size>0)throw new Ie(f)};n({setViewport(...u){a.setViewport(...u)},setScissorRect(...u){a.setScissorRect(...u)},setBlendConstant(...u){a.setBlendConstant(...u)},setStencilReference(...u){a.setStencilReference(...u)},beginOcclusionQuery(...u){a.beginOcclusionQuery(...u)},endOcclusionQuery(...u){a.endOcclusionQuery(...u)},executeBundles(...u){a.executeBundles(...u)},setPipeline(u){i=u},setIndexBuffer:(u,d,m,T)=>{Z(u)?a.setIndexBuffer(this.unwrap(u),d,m,T):a.setIndexBuffer(u,d,m,T)},setVertexBuffer(u,d,m,T){s.set(u,{buffer:d,offset:m,size:T})},setBindGroup(u,d){o.set(u,d)},draw(u,d,m,T){p(),a.draw(u,d,m,T)},drawIndexed(...u){p(),a.drawIndexed(...u)},drawIndirect(...u){p(),a.drawIndirect(...u)},drawIndexedIndirect(...u){p(),a.drawIndexedIndirect(...u)}}),a.end()}flush(){this._commandEncoder&&(this.device.queue.submit([this._commandEncoder.finish()]),this._commandEncoder=null)}};async function Cn(e){let{adapter:t,device:r,unstable_names:n="random",unstable_jitTranspiler:a}=e??{};if(!navigator.gpu)throw new Error("WebGPU is not supported by this browser.");let o=await navigator.gpu.requestAdapter(t);if(!o)throw new Error("Could not find a compatible GPU");return new ht(await o.requestDevice(r),n==="random"?new re:new ne,a,!0)}function Vn(e){let{device:t,unstable_names:r="random",unstable_jitTranspiler:n}=e??{};return new ht(t,r==="random"?new re:new ne,n,!1)}function wt(e){return new Sr(e)}var Sr=class{constructor(t=void 0){this.defaultValue=t}resourceType="slot";label;$name(t){return this.label=t,this}areEqual(t,r){return Object.is(t,r)}toString(){return`slot:${this.label??"<unnamed>"}`}get value(){let t=j();if(!t)throw new Error("Cannot access tgpu.slot's value outside of resolution.");return Ee(t.unwrap(this))}};function En(e,t){return new vr(e,t)}var vr=class{constructor(t,r=void 0){this.schema=t;this.defaultValue=r;this.slot=wt(r)}resourceType="accessor";label;slot;$name(t){return this.label=t,this.slot.$name(t),this}toString(){return`accessor:${this.label??"<unnamed>"}`}get value(){if(!j())throw new Error("Cannot access tgpu.accessor's value outside of resolution.");return new Proxy({"~resolve":r=>r.resolve(this),toString:()=>`.value:${this.label??"<unnamed>"}`,[y]:{dataType:this.schema}},M)}"~resolve"(t){let r=t.unwrap(this.slot);return Ze(r)?t.resolve(r):lr(r)?`${t.resolve(r)}()`:t.resolveValue(r,this.schema)}};function kn(e){return ba(e)}function xa([e,t]){return`${e.label??"<unnamed>"}=${t}`}function ba(e){return{resourceType:"derived","~compute":e,[Bt]:void 0,get value(){let r=j();if(!r)throw new Error("Cannot access tgpu.derived's value outside of resolution.");return Ee(r.unwrap(this))},with(r,n){return $n(this,[[r,n]])},toString(){return"derived"}}}function $n(e,t){return{resourceType:"derived",[Bt]:void 0,"~compute"(){throw new Error("'~compute' should never be read on bound derived items.")},"~providing":{inner:e,pairs:t},get value(){let n=j();if(!n)throw new Error("Cannot access tgpu.derived's value outside of resolution.");return Ee(n.unwrap(this))},with(n,a){return $n(e,[...t,[n,a]])},toString(){return`derived[${t.map(xa).join(", ")}]`}}}function On(e,t){return new St("private",e,t)}function Gn(e){return new St("workgroup",e)}var St=class{constructor(t,r,n){this.scope=t;this._dataType=r;this._initialValue=n}_label;$name(t){return this._label=t,this}"~resolve"(t){let r=t.names.makeUnique(this._label);return this._initialValue?t.addDeclaration(`var<${this.scope}> ${r}: ${t.resolve(this._dataType)} = ${t.resolveValue(this._initialValue,this._dataType)};`):t.addDeclaration(`var<${this.scope}> ${r}: ${t.resolve(this._dataType)};`),r}get label(){return this._label}toString(){return`var:${this.label??"<unnamed>"}`}get value(){if(!oe())throw new Error("Cannot access tgpu.var's value directly in JS.");return new Proxy({"~resolve":t=>t.resolve(this),toString:()=>`.value:${this.label??"<unnamed>"}`,[y]:{dataType:this._dataType}},M)}};var Wn={bindGroupLayout:gt,vertexLayout:Tr,init:Cn,initFromDevice:Vn,resolve:Un,"~unstable":{fn:vn,fragmentFn:Fn,vertexFn:An,computeFn:Sn,vertexLayout:Tr,derived:kn,slot:wt,accessor:En,privateVar:On,workgroupVar:Gn,const:jr,declare:Kr,sampler:mn,comparisonSampler:gn}},Mu=Wn;Object.assign(Wn,{__assignAst:Jr,__removedJsImpl:Yr});export{ae as MissingBindGroupsError,Ft as MissingLinksError,vt as MissingSlotValueError,Ie as MissingVertexBuffersError,Dt as NotUniformError,re as RandomNameRegistry,me as ResolutionError,ne as StrictNameRegistry,Mu as default,Z as isBuffer,Me as isComparisonSampler,k as isDerived,ze as isSampledTextureView,We as isSampler,E as isSlot,je as isStorageTextureView,q as isTexture,lr as isTgpuFn,ua as isUsableAsRender,tr as isUsableAsSampled,de as isUsableAsStorage,at as isUsableAsUniform,ia as isUsableAsVertex,Wn as tgpu,zt as unstable_asMutable,Kt as unstable_asReadonly,qt as unstable_asUniform};
25
+ `)}${r}`}finally{It(Re.GPU)}return this._getOrInstantiate(t)}return String(t)}resolveValue(t,r){if(K(t))return this.resolve(t);if(r&&W(r))return`array(${t.map(n=>this.resolveValue(n,r.elementType))})`;if(Array.isArray(t))return`array(${t.map(n=>this.resolveValue(n))})`;if(r&&h(r))return`${this.resolve(r)}(${Object.entries(r.propTypes).map(([n,a])=>this.resolveValue(t[n],a))})`;throw new Error(`Value ${t} (as json: ${JSON.stringify(t)}) of schema ${r} is not resolvable to WGSL`)}};function Ae(e,t){let r=new lr(t),n=r.resolve(e),a=r.bindGroupLayoutsToPlaceholderMap,o=[],s=new Set([...a.keys()].map(m=>m.index).filter(m=>m!==void 0)),i=Ur(s),p=r.fixedBindings.map((m,T)=>[String(T),m.layoutEntry]),u=()=>{let m=i.next().value,T=ft(Object.fromEntries(p));return o[m]=T,n=n.replaceAll(hn,String(m)),[m,new Fe(T,Object.fromEntries(r.fixedBindings.map((f,g)=>[String(g),f.resource])))]},d=p.length>0?u():null;for(let[m,T]of a.entries()){let f=m.index??i.next().value;o[f]=m,n=n.replaceAll(T,String(f))}return{code:n,bindGroupLayouts:o,catchall:d}}function dr(e,t,r){let n=t.map(a=>`${a.value}: ${e.resolve(a.dataType)}`).join(", ");return r!==void 0?`(${n}) -> ${be(r)} ${e.resolve(r)}`:`(${n})`}function te(e,t){let r=[];return typeof t=="string"&&(e.isEntry?(Array.isArray(e.argTypes)&&h(e.argTypes[0])&&r.push({In:e.argTypes[0]}),h(e.returnType)&&r.push({Out:e.returnType})):Array.isArray(e.argTypes)&&(zr(t,Array.isArray(e.argTypes)?e.argTypes:Object.values(e.argTypes),n=>r.push(n)),Se(t,e.returnType,n=>r.push(n)))),{label:void 0,applyExternals(n){r.push(n)},resolve(n,a=""){let o={};for(let i of r)q(o,i);let s=n.names.makeUnique(this.label);if(typeof t=="string"){let i="";if(!e.isEntry)i=Array.isArray(e.argTypes)?"":dr(n,Object.entries(e.argTypes).map(([u,d])=>({value:u,dataType:d})),e.returnType);else{let u=Array.isArray(e.argTypes)&&h(e.argTypes[0])?"(in: In)":"()",d=E(e.returnType)?be(e.returnType):"",m=e.returnType!==void 0?h(e.returnType)?"-> Out":`-> ${d!==""?d:"@location(0)"} ${n.resolve(e.returnType)}`:"";i=`${u} ${m} `}let p=pe(n,o,`${i}${t.trim()}`);n.addDeclaration(`${a}fn ${s}${p}`)}else{let i=Hr(t);if(i?.externals){let f=Object.fromEntries(Object.entries(i.externals).filter(([g])=>!(g in o)));q(o,f)}let p=i?.ast??n.transpileFn(String(t));p.argNames.type==="destructured-object"&&q(o,Object.fromEntries(p.argNames.props.map(({prop:f,alias:g})=>[g,f]))),!Array.isArray(e.argTypes)&&p.argNames.type==="identifiers"&&p.argNames.names[0]!==void 0&&q(o,{[p.argNames.names[0]]:Object.fromEntries(Object.keys(e.argTypes).map(f=>[f,f]))});let u=p.externalNames.filter(f=>!(f in o));if(u.length>0)throw new At(this.label,u);let d=Array.isArray(e.argTypes)?p.argNames.type==="identifiers"?e.argTypes.map((f,g)=>({value:(p.argNames.type==="identifiers"?p.argNames.names[g]:void 0)??`arg_${g}`,dataType:f})):[]:Object.entries(e.argTypes).map(([f,g])=>({value:f,dataType:g})),{head:m,body:T}=n.fnToWgsl({args:d,returnType:e.returnType,body:p.body,externalMap:o});n.addDeclaration(`${a}fn ${s}${n.resolve(m)}${n.resolve(T)}`)}return s}}}function wn(e){let t=0;return Object.fromEntries(Object.entries(e).map(([r,n])=>{if(Ze(n))return[r,n];let a=X(n);return a!==void 0?(t=a+1,[r,n]):[r,Et(t++,n)]}))}function ct(e){return L(e)?X(e)!==void 0?e:Et(0,e):Vt(wn(e))}function Ue(e){return Vt(wn(e))}function re(e,...t){return la(e)?da(e,...t):e}function la(e){return Array.isArray(e)&&"raw"in e&&Array.isArray(e.raw)&&e.raw.every(t=>typeof t=="string")}function da(e,...t){return e.slice(1).reduce((r,n,a)=>`${r}${t[a]}${n}`,e[0])}function Sn(e){let t={argTypes:e.in&&Object.keys(e.in).length!==0?[Ue(e.in)]:[],returnType:void 0,workgroupSize:[e.workgroupSize[0]??1,e.workgroupSize[1]??1,e.workgroupSize[2]??1],isEntry:!0},r=(n,...a)=>ma(t,e.workgroupSize,re(n,...a));return Object.assign(Object.assign(r,t),{does:r})}function ma(e,t,r){let n=te(e,r),a=e.argTypes[0];return{shell:e,get label(){return n.label},$uses(o){return n.applyExternals(o),this},$name(o){return n.label=o,j(a)&&a.$name(`${o}_Input`),this},"~resolve"(o){return n.resolve(o,`@compute @workgroup_size(${t.join(", ")}) `)},toString(){return`computeFn:${this.label??"<unnamed>"}`}}}function vn(e,t){let r={argTypes:e,returnType:t,isEntry:!1},n=(a,...o)=>fa(r,re(a,...o));return Object.assign(Object.assign(n,r),{does:n})}function mr(e){return e?.resourceType==="function"}function ga([e,t]){return`${e.label??"<unnamed>"}=${t}`}function fa(e,t){let r=te(e,t),n={[y]:{implementation:t},shell:e,resourceType:"function",$uses(s){return r.applyExternals(s),this},$name(s){return r.label=s,this},with(s,i){return Dn(o,[[ue(s)?s.slot:s,i]])},"~resolve"(s){if(typeof t=="string")return r.resolve(s);let i=s;if(i.callStack===void 0)throw new Error("Cannot resolve a TGSL function outside of a generation context");try{return i.callStack.push(e.returnType),r.resolve(s)}finally{i.callStack.pop()}}},a=Bt((...s)=>{if(typeof t=="string")throw new Error("Cannot execute on the CPU functions constructed with raw WGSL");return t(...s)},(...s)=>({value:new xt(o,s.map(i=>i.value)),dataType:e.returnType??U})),o=Object.assign(a,n);return Object.defineProperty(o,"label",{get:()=>r.label}),Object.defineProperty(o,"toString",{value:()=>`fn:${r.label??"<unnamed>"}`}),o}function Dn(e,t){let r={[y]:{implementation:e[y].implementation},resourceType:"function",shell:e.shell,"~providing":{inner:e,pairs:t},$uses(o){return e.$uses(o),this},$name(o){return e.$name(o),this},with(o,s){return Dn(a,[...t,[ue(o)?o.slot:o,s]])}},n=Bt((...o)=>e(...o),(...o)=>({value:new xt(a,o.map(s=>s.value)),dataType:e.shell.returnType??U})),a=Object.assign(n,r);return Object.defineProperty(a,"label",{get:()=>e.label}),Object.defineProperty(a,"toString",{value(){return`fn:${e.label??"<unnamed>"}[${t.map(ga).join(", ")}]`}}),a[y].implementation=e[y].implementation,a}var xt=class{constructor(t,r){this._fn=t;this._params=r}get label(){return this._fn.label}"~resolve"(t){return t.resolve(`${t.resolve(this._fn)}(${this._params.map(r=>t.resolve(r)).join(", ")})`)}toString(){return`call:${this.label??"<unnamed>"}`}};function Fn(e){let t={argTypes:e.in&&Object.keys(e.in).length!==0?[Ue(e.in)]:[],targets:e.out,returnType:Object.keys(e.out).length!==0?ct(e.out):void 0,isEntry:!0},r=(n,...a)=>Ta(t,re(n,...a));return Object.assign(Object.assign(r,t),{does:r})}function Ta(e,t){let r=te(e,t),n=e.returnType,a=e.argTypes[0];return typeof t=="string"&&Se(t,n,s=>r.applyExternals(s)),{shell:e,outputType:n,get label(){return r.label},$uses(s){return r.applyExternals(s),this},$name(s){return r.label=s,j(n)&&n.$name(`${s}_Output`),j(a)&&a.$name(`${s}_Input`),this},"~resolve"(s){if(typeof t=="string")return r.resolve(s,"@fragment ");let i=s;if(i.callStack===void 0)throw new Error("Cannot resolve a TGSL function outside of a generation context");try{return i.callStack.push(n),r.resolve(s,"@fragment ")}finally{i.callStack.pop()}},toString(){return`fragmentFn:${this.label??"<unnamed>"}`}}}function An(e){let t={attributes:[e.in??{}],returnType:Object.keys(e.out).length!==0?ct(e.out):void 0,argTypes:e.in&&Object.keys(e.in).length!==0?[Ue(e.in)]:[],isEntry:!0},r=(n,...a)=>ya(t,re(n,...a));return Object.assign(Object.assign(r,t),{does:r})}function ya(e,t){let r=te(e,t),n=e.returnType,a=e.argTypes[0];return typeof t=="string"&&Se(t,n,o=>r.applyExternals(o)),{shell:e,outputType:n,inputType:a,get label(){return r.label},$uses(o){return r.applyExternals(o),this},$name(o){return r.label=o,j(n)&&n.$name(`${o}_Output`),j(a)&&a.$name(`${o}_Input`),this},"~resolve"(o){if(typeof t=="string")return r.resolve(o,"@vertex ");let s=o;if(s.callStack===void 0)throw new Error("Cannot resolve a TGSL function outside of a generation context");try{return s.callStack.push(n),r.resolve(o,"@vertex ")}finally{s.callStack.pop()}},toString(){return`vertexFn:${this.label??"<unnamed>"}`}}}var ne=class{lastUniqueId=0;makeUnique(t){let r;return t?(r=t.replaceAll(/\s/g,"_"),r=r.replaceAll(/[^\w\d]/g,"")):r="item",`${r}_${this.lastUniqueId++}`}},ae=class{_usedNames=new Set;makeUnique(t){if(t===void 0)throw new Error("Unnamed item found when using a strict name registry");let r=0,n=t;for(;this._usedNames.has(n);)r++,n=`${t}_${r}`;return this._usedNames.add(n),n}};function Un(e){let{externals:t,template:r,names:n,unstable_jitTranspiler:a}=e,o={};q(o,t??{});let s={"~resolve"(p){return pe(p,o,r??"")},toString:()=>"<root>"},{code:i}=Ae(s,{names:n==="strict"?new ae:new ne,jitTranspiler:a});return i}var qe=class{constructor(t){this._make=t}_map=new WeakMap;getOrMake(t,...r){if(this._map.has(t))return this._map.get(t);let n=this._make(t,...r);return this._map.set(t,n),n}};function In(e,t,r){return new gr(new fr(e,t,r),{})}function Bn(e){return e?.resourceType==="compute-pipeline"}var gr=class e{constructor(t,r){this._core=t;this._priors=r}resourceType="compute-pipeline";get label(){return this._core.label}get rawPipeline(){return this._core.unwrap().pipeline}with(t,r){return new e(this._core,{bindGroupLayoutMap:new Map([...this._priors.bindGroupLayoutMap??[],[t,r]])})}dispatchWorkgroups(t,r,n){let a=this._core.unwrap(),{branch:o,label:s}=this._core,i=o.commandEncoder.beginComputePass({label:s??"<unnamed>"});i.setPipeline(a.pipeline);let p=new Set(a.bindGroupLayouts);if(a.bindGroupLayouts.forEach((u,d)=>{if(a.catchall&&d===a.catchall[0])i.setBindGroup(d,o.unwrap(a.catchall[1])),p.delete(u);else{let m=this._priors.bindGroupLayoutMap?.get(u);m!==void 0&&(p.delete(u),i.setBindGroup(d,o.unwrap(m)))}}),p.size>0)throw new oe(p);i.dispatchWorkgroups(t,r,n),i.end()}$name(t){return this._core.label=t,this}},fr=class{constructor(t,r,n){this.branch=t;this._slotBindings=r;this._entryFn=n}label;_memo;unwrap(){if(this._memo===void 0){let t=this.branch.device,{code:r,bindGroupLayouts:n,catchall:a}=Ae({"~resolve":o=>(o.withSlots(this._slotBindings,()=>{o.resolve(this._entryFn)}),""),toString:()=>`computePipeline:${this.label??"<unnamed>"}`},{names:this.branch.nameRegistry,jitTranspiler:this.branch.jitTranspiler});a!==null&&n[a[0]]?.$name(`${this.label??"<unnamed>"} - Automatic Bind Group & Layout`),this._memo={pipeline:t.createComputePipeline({label:this.label??"<unnamed>",layout:t.createPipelineLayout({label:`${this.label??"<unnamed>"} - Pipeline Layout`,bindGroupLayouts:n.map(o=>this.branch.unwrap(o))}),compute:{module:t.createShaderModule({label:`${this.label??"<unnamed>"} - Shader`,code:r})}}),bindGroupLayouts:n,catchall:a}}return this._memo}};function cr(e,t="vertex"){return new yr(e,t)}function ht(e){return e?.resourceType==="vertex-layout"}var Tr=Symbol("defaultAttribEntry");function bt(e,t,r,n,a){if(ce(t)||Vr(t)){let o=X(t);return o!==void 0&&(n[a??Tr]=o),bt(e,t.inner,V(r,M(t)),n)}if(h(t)){let o=r;return Object.fromEntries(Object.entries(t.propTypes).map(([s,i])=>{o=V(o,A(i));let p=[s,bt(e,i,o,n,s)];return o+=c(i),p}))}if(Q(t)){let o=r;return Object.fromEntries(Object.entries(t.propTypes).map(([s,i])=>{o=V(o,M(i));let p=[s,bt(e,i,o,n,s)];return o+=c(i),p}))}if("type"in t&&typeof t.type=="string"){if(Cr.includes(t.type))return{_layout:e,format:t.type,offset:r};let o=Er[t.type];if(o)return{_layout:e,format:o,offset:r}}throw new Error(`Unsupported data used in vertex layout: ${String(t)}`)}var yr=class{constructor(t,r){this.schemaForCount=t;this.stepMode=r;let n=t(0);this.stride=V(c(n.elementType),A(n)),this.attrib=bt(this,n.elementType,0,this._customLocationMap)}resourceType="vertex-layout";stride;attrib;_customLocationMap={};_label;get label(){return this._label}get vertexLayout(){if(this._customLocationMap[Tr]!==void 0){if(typeof this.attrib.format!="string"||typeof this.attrib.offset!="number")throw new Error("Single attribute vertex layouts must have a format and offset.");return{arrayStride:this.stride,stepMode:this.stepMode,attributes:[{format:this.attrib.format,offset:this.attrib.offset,shaderLocation:this._customLocationMap[Tr]}]}}if(!Object.keys(this.attrib).every(r=>this._customLocationMap[r]!==void 0))throw new Error("All attributes must have custom locations in order to unwrap a vertex layout.");return{arrayStride:this.stride,stepMode:this.stepMode,attributes:[...Object.entries(this.attrib).map(([r,n])=>({format:n.format,offset:n.offset,shaderLocation:this._customLocationMap[r]}))]}}$name(t){return this._label=t,this}};function ca(e){return typeof e?.loadOp=="string"}function Rn(e,t){if(L(e)){if(!ca(t))throw new Error("Expected a single color attachment, not a record.");return[t]}let r=[];for(let n of Object.keys(e)){let a=t[n];if(!a)throw new Error(`A color attachment by the name of '${n}' was not provided to the shader.`);r.push(a)}return r}function xa(e){return typeof e?.format=="string"}function _n(e,t){if(L(e)){if(!xa(t))throw new Error("Expected a single color target configuration, not a record.");return[t]}let r=[];for(let n of Object.keys(e)){let a=t[n];if(!a)throw new Error(`A color target by the name of '${n}' was not provided to the shader.`);r.push(a)}return r}function Pn(e){return new xr(new br(e),{})}function Ln(e){return e?.resourceType==="render-pipeline"}var xr=class e{constructor(t,r){this.core=t;this.priors=r}resourceType="render-pipeline";get label(){return this.core.label}$name(t){return this.core.label=t,this}with(t,r){if(Tt(t))return new e(this.core,{...this.priors,bindGroupLayoutMap:new Map([...this.priors.bindGroupLayoutMap??[],[t,r]])});if(ht(t))return new e(this.core,{...this.priors,vertexLayoutMap:new Map([...this.priors.vertexLayoutMap??[],[t,r]])});throw new Error("Unsupported value passed into .with()")}withColorAttachment(t){return new e(this.core,{...this.priors,colorAttachment:t})}withDepthStencilAttachment(t){return new e(this.core,{...this.priors,depthStencilAttachment:t})}draw(t,r,n,a){let o=this.core.unwrap(),{branch:s,fragmentFn:i}=this.core.options,u={colorAttachments:Rn(i.shell.targets,this.priors.colorAttachment??{}).map(g=>H(g.view)?{...g,view:s.unwrap(g.view).createView()}:g)};if(this.core.label!==void 0&&(u.label=this.core.label),this.priors.depthStencilAttachment!==void 0){let g=this.priors.depthStencilAttachment;H(g.view)?u.depthStencilAttachment={...g,view:s.unwrap(g.view).createView()}:u.depthStencilAttachment=g}let d=s.commandEncoder.beginRenderPass(u);d.setPipeline(o.pipeline);let m=new Set(o.bindGroupLayouts);o.bindGroupLayouts.forEach((g,F)=>{if(o.catchall&&F===o.catchall[0])d.setBindGroup(F,s.unwrap(o.catchall[1])),m.delete(g);else{let S=this.priors.bindGroupLayoutMap?.get(g);S!==void 0&&(m.delete(g),d.setBindGroup(F,s.unwrap(S)))}});let T=new Set(this.core.usedVertexLayouts);if(this.core.usedVertexLayouts.forEach((g,F)=>{let S=this.priors.vertexLayoutMap?.get(g);S&&(T.delete(g),d.setVertexBuffer(F,s.unwrap(S)))}),m.size>0)throw new oe(m);if(T.size>0)throw new Be(T);d.draw(t,r,n,a),d.end(),s.flush()}},br=class{constructor(t){this.options=t;let r=Xr(t.vertexFn.shell.attributes[0],t.vertexAttribs);this._vertexBufferLayouts=r.bufferDefinitions,this.usedVertexLayouts=r.usedVertexLayouts,this._targets=_n(t.fragmentFn.shell.targets,t.targets)}label;usedVertexLayouts;_memo;_vertexBufferLayouts;_targets;unwrap(){if(this._memo===void 0){let{branch:t,vertexFn:r,fragmentFn:n,slotBindings:a,primitiveState:o,depthStencilState:s,multisampleState:i}=this.options,{code:p,bindGroupLayouts:u,catchall:d}=Ae({"~resolve":g=>(g.withSlots(a,()=>{g.resolve(r),g.resolve(n)}),""),toString:()=>`renderPipeline:${this.label??"<unnamed>"}`},{names:t.nameRegistry,jitTranspiler:t.jitTranspiler});d!==null&&u[d[0]]?.$name(`${this.label??"<unnamed>"} - Automatic Bind Group & Layout`);let m=t.device,T=m.createShaderModule({label:`${this.label??"<unnamed>"} - Shader`,code:p}),f={layout:m.createPipelineLayout({label:`${this.label??"<unnamed>"} - Pipeline Layout`,bindGroupLayouts:u.map(g=>t.unwrap(g))}),vertex:{module:T,buffers:this._vertexBufferLayouts},fragment:{module:T,targets:this._targets}};this.label!==void 0&&(f.label=this.label),o&&(f.primitive=o),s&&(f.depthStencil=s),i&&(f.multisample=i),this._memo={pipeline:m.createRenderPipeline(f),bindGroupLayouts:u,catchall:d}}return this._memo}};var hr=class e{constructor(t,r){this._getRoot=t;this._slotBindings=r}with(t,r){return new e(this._getRoot,[...this._slotBindings,[ue(t)?t.slot:t,r]])}withCompute(t){return new wr(this._getRoot(),this._slotBindings,t)}withVertex(t,r){return new Sr({branch:this._getRoot(),primitiveState:void 0,depthStencilState:void 0,slotBindings:this._slotBindings,vertexFn:t,vertexAttribs:r,multisampleState:void 0})}},wr=class{constructor(t,r,n){this._root=t;this._slotBindings=r;this._entryFn=n}createPipeline(){return In(this._root,this._slotBindings,this._entryFn)}},Sr=class{constructor(t){this._options=t}withFragment(t,r,n){return Ie(typeof t!="string","Just type mismatch validation"),Ie(typeof r!="string","Just type mismatch validation"),new vr({...this._options,fragmentFn:t,targets:r})}},vr=class e{constructor(t){this._options=t}withPrimitive(t){return new e({...this._options,primitiveState:t})}withDepthStencil(t){return new e({...this._options,depthStencilState:t})}withMultisample(t){return new e({...this._options,multisampleState:t})}createPipeline(){return Pn(this._options)}},wt=class extends hr{constructor(r,n,a,o){super(()=>this,[]);this.device=r;this.nameRegistry=n;this.jitTranspiler=a;this._ownDevice=o;this["~unstable"]=this}"~unstable";_disposables=[];_unwrappedBindGroupLayouts=new qe(r=>r.unwrap(this));_unwrappedBindGroups=new qe(r=>r.unwrap(this));_commandEncoder=null;get commandEncoder(){return this._commandEncoder||(this._commandEncoder=this.device.createCommandEncoder()),this._commandEncoder}createBuffer(r,n){let a=sn(this,r,n);return this._disposables.push(a),a}createUniform(r,n){return this.createBuffer(r,n).$usage("uniform").as("uniform")}createMutable(r,n){return this.createBuffer(r,n).$usage("storage").as("mutable")}createReadonly(r,n){return this.createBuffer(r,n).$usage("storage").as("readonly")}createBindGroup(r,n){return new Fe(r,n)}destroy(){for(let r of this._disposables)r.destroy();this._ownDevice&&this.device.destroy()}createTexture(r){let n=gn(r,this);return this._disposables.push(n),n}unwrap(r){if(Bn(r))return r.rawPipeline;if(Ln(r))return r.core.unwrap().pipeline;if(Tt(r))return this._unwrappedBindGroupLayouts.getOrMake(r);if(or(r))return this._unwrappedBindGroups.getOrMake(r);if(ee(r))return r.buffer;if(H(r)||ze(r)||Ke(r))return r.unwrap();if(ht(r))return r.vertexLayout;if(Me(r)){if("unwrap"in r)return r.unwrap(this);throw new Error("Cannot unwrap laid-out sampler.")}if(Ne(r)){if("unwrap"in r)return r.unwrap(this);throw new Error("Cannot unwrap laid-out comparison sampler.")}throw new Error(`Unknown resource type: ${r}`)}beginRenderPass(r,n){let a=this.commandEncoder.beginRenderPass(r),o=new Map,s=new Map,i,p=()=>{if(!i)throw new Error("Cannot draw without a call to pass.setPipeline");let{core:u,priors:d}=i,m=u.unwrap();a.setPipeline(m.pipeline);let T=new Set(m.bindGroupLayouts);m.bindGroupLayouts.forEach((g,F)=>{if(m.catchall&&F===m.catchall[0])a.setBindGroup(F,this.unwrap(m.catchall[1])),T.delete(g);else{let S=d.bindGroupLayoutMap?.get(g)??o.get(g);S!==void 0&&(T.delete(g),or(S)?a.setBindGroup(F,this.unwrap(S)):a.setBindGroup(F,S))}});let f=new Set;if(u.usedVertexLayouts.forEach((g,F)=>{let S=d.vertexLayoutMap?.get(g),B=S?{buffer:S,offset:void 0,size:void 0}:s.get(g);!B||!B.buffer?f.add(g):ee(B.buffer)?a.setVertexBuffer(F,this.unwrap(B.buffer),B.offset,B.size):a.setVertexBuffer(F,B.buffer,B.offset,B.size)}),T.size>0)throw new oe(T);if(f.size>0)throw new Be(f)};n({setViewport(...u){a.setViewport(...u)},setScissorRect(...u){a.setScissorRect(...u)},setBlendConstant(...u){a.setBlendConstant(...u)},setStencilReference(...u){a.setStencilReference(...u)},beginOcclusionQuery(...u){a.beginOcclusionQuery(...u)},endOcclusionQuery(...u){a.endOcclusionQuery(...u)},executeBundles(...u){a.executeBundles(...u)},setPipeline(u){i=u},setIndexBuffer:(u,d,m,T)=>{ee(u)?a.setIndexBuffer(this.unwrap(u),d,m,T):a.setIndexBuffer(u,d,m,T)},setVertexBuffer(u,d,m,T){s.set(u,{buffer:d,offset:m,size:T})},setBindGroup(u,d){o.set(u,d)},draw(u,d,m,T){p(),a.draw(u,d,m,T)},drawIndexed(...u){p(),a.drawIndexed(...u)},drawIndirect(...u){p(),a.drawIndirect(...u)},drawIndexedIndirect(...u){p(),a.drawIndexedIndirect(...u)}}),a.end()}flush(){this._commandEncoder&&(this.device.queue.submit([this._commandEncoder.finish()]),this._commandEncoder=null)}};async function Cn(e){let{adapter:t,device:r,unstable_names:n="random",unstable_jitTranspiler:a}=e??{};if(!navigator.gpu)throw new Error("WebGPU is not supported by this browser.");let o=await navigator.gpu.requestAdapter(t);if(!o)throw new Error("Could not find a compatible GPU");return new wt(await o.requestDevice(r),n==="random"?new ne:new ae,a,!0)}function En(e){let{device:t,unstable_names:r="random",unstable_jitTranspiler:n}=e??{};return new wt(t,r==="random"?new ne:new ae,n,!1)}function St(e){return new Dr(e)}var Dr=class{constructor(t=void 0){this.defaultValue=t}resourceType="slot";label;$name(t){return this.label=t,this}areEqual(t,r){return Object.is(t,r)}toString(){return`slot:${this.label??"<unnamed>"}`}get value(){let t=z();if(!t)throw new Error("Cannot access tgpu.slot's value outside of resolution.");return $e(t.unwrap(this))}};function Vn(e,t){return new Fr(e,t)}var Fr=class{constructor(t,r=void 0){this.schema=t;this.defaultValue=r;this.slot=St(r)}resourceType="accessor";label;slot;$name(t){return this.label=t,this.slot.$name(t),this}toString(){return`accessor:${this.label??"<unnamed>"}`}get value(){if(!z())throw new Error("Cannot access tgpu.accessor's value outside of resolution.");return new Proxy({"~resolve":r=>r.resolve(this),toString:()=>`.value:${this.label??"<unnamed>"}`,[y]:{dataType:this.schema}},N)}"~resolve"(t){let r=t.unwrap(this.slot);return et(r)?t.resolve(r):mr(r)?`${t.resolve(r)}()`:t.resolveValue(r,this.schema)}};function $n(e){return ha(e)}function ba([e,t]){return`${e.label??"<unnamed>"}=${t}`}function ha(e){return{resourceType:"derived","~compute":e,[Rt]:void 0,get value(){let r=z();if(!r)throw new Error("Cannot access tgpu.derived's value outside of resolution.");return $e(r.unwrap(this))},with(r,n){return kn(this,[[r,n]])},toString(){return"derived"}}}function kn(e,t){return{resourceType:"derived",[Rt]:void 0,"~compute"(){throw new Error("'~compute' should never be read on bound derived items.")},"~providing":{inner:e,pairs:t},get value(){let n=z();if(!n)throw new Error("Cannot access tgpu.derived's value outside of resolution.");return $e(n.unwrap(this))},with(n,a){return kn(e,[...t,[n,a]])},toString(){return`derived[${t.map(ba).join(", ")}]`}}}function On(e,t){return new vt("private",e,t)}function Gn(e){return new vt("workgroup",e)}var vt=class{constructor(t,r,n){this.scope=t;this._dataType=r;this._initialValue=n}_label;$name(t){return this._label=t,this}"~resolve"(t){let r=t.names.makeUnique(this._label);return this._initialValue?t.addDeclaration(`var<${this.scope}> ${r}: ${t.resolve(this._dataType)} = ${t.resolveValue(this._initialValue,this._dataType)};`):t.addDeclaration(`var<${this.scope}> ${r}: ${t.resolve(this._dataType)};`),r}get label(){return this._label}toString(){return`var:${this.label??"<unnamed>"}`}get value(){if(!se())throw new Error("Cannot access tgpu.var's value directly in JS.");return new Proxy({"~resolve":t=>t.resolve(this),toString:()=>`.value:${this.label??"<unnamed>"}`,[y]:{dataType:this._dataType}},N)}};var Wn={bindGroupLayout:ft,vertexLayout:cr,init:Cn,initFromDevice:En,resolve:Un,"~unstable":{fn:vn,fragmentFn:Fn,vertexFn:An,computeFn:Sn,vertexLayout:cr,derived:$n,slot:St,accessor:Vn,privateVar:On,workgroupVar:Gn,const:jr,declare:Kr,sampler:un,comparisonSampler:pn}},Nu=Wn;Object.assign(Wn,{__assignAst:Jr,__removedJsImpl:Yr});export{oe as MissingBindGroupsError,At as MissingLinksError,Dt as MissingSlotValueError,Be as MissingVertexBuffersError,Ft as NotUniformError,ne as RandomNameRegistry,ge as ResolutionError,ae as StrictNameRegistry,Nu as default,ee as isBuffer,Ne as isComparisonSampler,k as isDerived,Ke as isSampledTextureView,Me as isSampler,$ as isSlot,ze as isStorageTextureView,H as isTexture,mr as isTgpuFn,aa as isUsableAsRender,rr as isUsableAsSampled,de as isUsableAsStorage,ot as isUsableAsUniform,na as isUsableAsVertex,Wn as tgpu,Kt as unstable_asMutable,qt as unstable_asReadonly,Ht as unstable_asUniform};
26
26
  //# sourceMappingURL=index.js.map