@tolokoban/tgd
Version:
ToloGameDev library for WebGL2
165 lines • 14.4 kB
TypeScript
import { TgdCodeBloc } from "../shader";
export declare function wasm_i32_load(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i64_load(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_f32_load(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_f64_load(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i32_store(offset: TgdCodeBloc[], value: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i64_store(offset: TgdCodeBloc[], value: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_f32_store(offset: TgdCodeBloc[], value: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_f64_store(offset: TgdCodeBloc[], value: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i32_load8_u(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i32_load8_s(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i32_load16_u(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i32_load16_s(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i64_load8_u(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i64_load8_s(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i64_load16_u(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i64_load16_s(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i64_load32_u(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i64_load32_s(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i32_store8(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i32_store16(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i64_store8(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i64_store16(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i64_store32(offset: TgdCodeBloc[], memory?: string): TgdCodeBloc[];
export declare function wasm_i32_const(value: number): TgdCodeBloc[];
export declare function wasm_i64_const(value: number): TgdCodeBloc[];
export declare function wasm_f32_const(value: number): TgdCodeBloc[];
export declare function wasm_f64_const(value: number): TgdCodeBloc[];
export declare function wasm_i32_clz(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_ctz(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_popcnt(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_extend8_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_extend16_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_clz(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_ctz(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_popcnt(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_extend8_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_extend16_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_extend32_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_neg(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_abs(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_sqrt(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_ceil(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_floor(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_trunc(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_nearest(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_neg(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_abs(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_sqrt(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_ceil(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_floor(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_trunc(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_nearest(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_add(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_sub(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_mul(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_div_u(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_div_s(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_rem_u(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_rem_s(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_and(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_or(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_xor(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_shl(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_shr_u(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_shr_s(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_rotl(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_rotr(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_add(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_sub(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_mul(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_div_u(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_div_s(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_rem_u(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_rem_s(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_and(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_or(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_xor(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_shl(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_shr_u(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_shr_s(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_rotl(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_rotr(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_add(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_sub(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_mul(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_div(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_min(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_max(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_copysign(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_add(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_sub(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_mul(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_div(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_min(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_max(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_copysign(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_eqz(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_eqz(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_eq(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_ne(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_lt_u(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_lt_s(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_le_u(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_le_s(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_gt_u(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_gt_s(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_ge_u(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_ge_s(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_eq(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_ne(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_lt_u(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_lt_s(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_le_u(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_le_s(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_gt_u(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_gt_s(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_ge_u(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_ge_s(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_eq(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_ne(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_lt(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_le(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_gt(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_ge(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_eq(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_ne(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_lt(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_le(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_gt(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_ge(a: TgdCodeBloc[], b: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_wrap_i64(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_extend_i32_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_extend_i32_u(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_demote_f64(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_promote_f32(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_trunc_f32_u(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_trunc_f32_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_trunc_f32_u(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_trunc_f32_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_trunc_f64_u(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_trunc_f64_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_trunc_f64_u(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_trunc_f64_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_trunc_sat_f32_u(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_trunc_sat_f32_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_trunc_sat_f32_u(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_trunc_sat_f32_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_trunc_sat_f64_u(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_trunc_sat_f64_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_trunc_sat_f64_u(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_trunc_sat_f64_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_convert_i32_u(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_convert_i32_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_convert_i32_u(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_convert_i32_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_convert_i64_u(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_convert_i64_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_convert_i64_u(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_convert_i64_s(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f32_reinterpret_i32(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_f64_reinterpret_i64(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i32_reinterpret_f32(value: TgdCodeBloc[]): TgdCodeBloc[];
export declare function wasm_i64_reinterpret_f64(value: TgdCodeBloc[]): TgdCodeBloc[];
//# sourceMappingURL=code.d.ts.map