Compare commits
4 commits
3f8e50cfc9
...
020bb8f124
| Author | SHA1 | Date | |
|---|---|---|---|
| 020bb8f124 | |||
| 26a3939012 | |||
| 0296db3106 | |||
| 6712a7fccb |
7 changed files with 473 additions and 130 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
import { load_texture } from "./assets";
|
import { load_texture } from "./assets";
|
||||||
import { btn, Button } from "./input";
|
import { btn, Button } from "./input";
|
||||||
import { Vec2, new_v2, vadd, vsub, vnorm, vmul } from "./vector";
|
import { Vec2, new_v2, vadd, vsub, vnorm, vmul } from "./vector";
|
||||||
import { spr, use_texture, Texture } from "./graphics";
|
import { spr, circle, use_texture, Texture } from "./graphics";
|
||||||
import { has_collision, Level } from "./level";
|
import { has_collision, Level } from "./level";
|
||||||
|
|
||||||
export interface ActorProps {
|
export interface ActorProps {
|
||||||
|
|
@ -191,6 +191,7 @@ export class Robo extends Actor {
|
||||||
|
|
||||||
const frame = (anim.start + ((clock / anim.speed) % anim.length)) >> 0;
|
const frame = (anim.start + ((clock / anim.speed) % anim.length)) >> 0;
|
||||||
spr(x, y, w, h, frame * w, 0, 32, 32);
|
spr(x, y, w, h, frame * w, 0, 32, 32);
|
||||||
|
// circle(this.props.position.x, this.props.position.y, 16, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
110
src/circle_shader.wgsl
Normal file
110
src/circle_shader.wgsl
Normal file
|
|
@ -0,0 +1,110 @@
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// Vertex shader
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
struct VertexInput {
|
||||||
|
@location(0) position : vec3<f32>,
|
||||||
|
@location(1) tex_coords : vec2<f32>,
|
||||||
|
};
|
||||||
|
|
||||||
|
struct InstanceInput {
|
||||||
|
@location(5) center: vec2<f32>,
|
||||||
|
@location(6) radius: f32,
|
||||||
|
@location(7) stroke_width: f32,
|
||||||
|
@location(8) stroke_color: vec4<f32>,
|
||||||
|
@location(9) fill_color: vec4<f32>,
|
||||||
|
};
|
||||||
|
|
||||||
|
struct VertexOutput {
|
||||||
|
@builtin(position) clip_position : vec4<f32>,
|
||||||
|
@location(0) tex_coords : vec2<f32>,
|
||||||
|
@location(1) inner_r2: f32,
|
||||||
|
@location(2) stroke_color: vec4<f32>,
|
||||||
|
@location(3) fill_color: vec4<f32>,
|
||||||
|
};
|
||||||
|
|
||||||
|
@vertex fn vs_main(vertex : VertexInput, instance : InstanceInput)->VertexOutput {
|
||||||
|
var out : VertexOutput;
|
||||||
|
out.stroke_color = instance.stroke_color;
|
||||||
|
out.fill_color = instance.fill_color;
|
||||||
|
|
||||||
|
// The circle's coordinate system goes from (-1,-1) to (1,1) but by
|
||||||
|
// convention we provide ourselves texture coordinates that go from (0,0)
|
||||||
|
// to (1,1).
|
||||||
|
out.tex_coords = (vertex.tex_coords * vec2f(2.0,2.0)) - vec2f(1.0,1.0);
|
||||||
|
|
||||||
|
// Compute the squared radius of the inner circle, so we don't do it
|
||||||
|
// per-pixel.
|
||||||
|
//
|
||||||
|
// The radius of the inner circle goes from 0 (no inner circle) to 1 (no
|
||||||
|
// stroke), because the radius of the outer circle is implicitly 1 (the
|
||||||
|
// circle in the square we're rendering.
|
||||||
|
//
|
||||||
|
// (Honestly I don't even need to do this per-vertex, this is per-instance,
|
||||||
|
// I can pre-calculate this if I need this to be faster somehow.)
|
||||||
|
let delta = instance.radius - instance.stroke_width; //, 0, instance.radius);
|
||||||
|
let inner_radius = delta / instance.radius;
|
||||||
|
out.inner_r2 = inner_radius * inner_radius;
|
||||||
|
|
||||||
|
let radius = vec2f(instance.radius, instance.radius);
|
||||||
|
let in_pos = instance.center + mix(-radius, radius, vec2f(vertex.position.x, vertex.position.y));
|
||||||
|
|
||||||
|
let position = adjust_for_resolution(in_pos);
|
||||||
|
out.clip_position = vec4f(position.x, position.y, vertex.position.z, 1.0);
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// Fragment shader
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@fragment fn fs_main(in : VertexOutput)->@location(0) vec4<f32> {
|
||||||
|
let tc2 = in.tex_coords * in.tex_coords;
|
||||||
|
if (tc2.x + tc2.y <= in.inner_r2) {
|
||||||
|
return in.fill_color;
|
||||||
|
} else if (tc2.x + tc2.y <= 1.0) {
|
||||||
|
return in.stroke_color;
|
||||||
|
} else {
|
||||||
|
return vec4<f32>(0.0, 0.0, 0.0, 0.0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// Resolution Handling
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
struct ScreenUniform {
|
||||||
|
resolution : vec2f,
|
||||||
|
};
|
||||||
|
@group(0) @binding(0) // 1.
|
||||||
|
var<uniform> screen : ScreenUniform;
|
||||||
|
|
||||||
|
const RES = vec2f(320.0, 240.0); // The logical resolution of the screen.
|
||||||
|
|
||||||
|
fn adjust_for_resolution(in_pos: vec2<f32>) -> vec2<f32> {
|
||||||
|
// Adjust in_pos for the "resolution" of the screen.
|
||||||
|
let RES_AR = RES.x / RES.y; // The aspect ratio of the logical screen.
|
||||||
|
|
||||||
|
// the actual resolution of the screen.
|
||||||
|
let screen_ar = screen.resolution.x / screen.resolution.y;
|
||||||
|
|
||||||
|
// Compute the difference in resolution ... correctly?
|
||||||
|
//
|
||||||
|
// nudge is the amount to add to the logical resolution so that the pixels
|
||||||
|
// stay the same size but we respect the aspect ratio of the screen. (So
|
||||||
|
// there's more of them in either the x or y direction.)
|
||||||
|
var nudge = vec2f(0.0);
|
||||||
|
if (screen_ar > RES_AR) {
|
||||||
|
nudge.x = (RES.y * screen_ar) - RES.x;
|
||||||
|
} else {
|
||||||
|
nudge.y = (RES.x / screen_ar) - RES.y;
|
||||||
|
}
|
||||||
|
var new_logical_resolution = RES + nudge;
|
||||||
|
|
||||||
|
// Now we can convert the incoming position to clip space, in the new screen.
|
||||||
|
let centered = in_pos + (nudge / 2.0);
|
||||||
|
var position = (2.0 * centered / new_logical_resolution) - 1.0;
|
||||||
|
position.y = -position.y;
|
||||||
|
|
||||||
|
return position;
|
||||||
|
}
|
||||||
|
|
@ -52,6 +52,18 @@ export function spr(
|
||||||
core.spr(x, y, w, h, sx, sy, sw, sh);
|
core.spr(x, y, w, h, sx, sy, sw, sh);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Draw a circle.
|
||||||
|
*
|
||||||
|
* @param x - The x coordinate of the center of the circle.
|
||||||
|
* @param y - The y coordinate of the center of the circle.
|
||||||
|
* @param r - The radius of the circle.
|
||||||
|
* @param s - The stroke width of the circle.
|
||||||
|
*/
|
||||||
|
export function circle(x: number, y: number, r: number, s: number) {
|
||||||
|
core.circle(x, y, r, s);
|
||||||
|
}
|
||||||
|
|
||||||
export class Texture {
|
export class Texture {
|
||||||
#id: number;
|
#id: number;
|
||||||
constructor(id: number) {
|
constructor(id: number) {
|
||||||
|
|
|
||||||
360
src/lib.rs
360
src/lib.rs
|
|
@ -46,7 +46,7 @@ impl Vertex {
|
||||||
|
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
#[derive(Copy, Clone, Debug, bytemuck::Pod, bytemuck::Zeroable)]
|
#[derive(Copy, Clone, Debug, bytemuck::Pod, bytemuck::Zeroable)]
|
||||||
struct SpriteInstance {
|
pub struct SpriteInstance {
|
||||||
src_top_left: [f32; 2],
|
src_top_left: [f32; 2],
|
||||||
src_dims: [f32; 2],
|
src_dims: [f32; 2],
|
||||||
|
|
||||||
|
|
@ -85,6 +85,60 @@ impl SpriteInstance {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[repr(C)]
|
||||||
|
#[derive(Copy, Clone, Debug, bytemuck::Pod, bytemuck::Zeroable)]
|
||||||
|
pub struct CircleInstance {
|
||||||
|
center: [f32; 2],
|
||||||
|
radius: f32,
|
||||||
|
stroke_width: f32,
|
||||||
|
stroke_color: [f32; 4],
|
||||||
|
fill_color: [f32; 4],
|
||||||
|
}
|
||||||
|
|
||||||
|
impl CircleInstance {
|
||||||
|
fn desc() -> wgpu::VertexBufferLayout<'static> {
|
||||||
|
wgpu::VertexBufferLayout {
|
||||||
|
array_stride: std::mem::size_of::<SpriteInstance>() as wgpu::BufferAddress,
|
||||||
|
step_mode: wgpu::VertexStepMode::Instance,
|
||||||
|
attributes: &[
|
||||||
|
wgpu::VertexAttribute {
|
||||||
|
offset: 0,
|
||||||
|
shader_location: 5,
|
||||||
|
format: wgpu::VertexFormat::Float32x2,
|
||||||
|
},
|
||||||
|
wgpu::VertexAttribute {
|
||||||
|
offset: std::mem::size_of::<[f32; 2]>() as wgpu::BufferAddress,
|
||||||
|
shader_location: 6,
|
||||||
|
format: wgpu::VertexFormat::Float32,
|
||||||
|
},
|
||||||
|
wgpu::VertexAttribute {
|
||||||
|
offset: (std::mem::size_of::<[f32; 2]>() + std::mem::size_of::<f32>())
|
||||||
|
as wgpu::BufferAddress,
|
||||||
|
shader_location: 7,
|
||||||
|
format: wgpu::VertexFormat::Float32,
|
||||||
|
},
|
||||||
|
wgpu::VertexAttribute {
|
||||||
|
offset: (std::mem::size_of::<[f32; 2]>()
|
||||||
|
+ std::mem::size_of::<f32>()
|
||||||
|
+ std::mem::size_of::<f32>())
|
||||||
|
as wgpu::BufferAddress,
|
||||||
|
shader_location: 8,
|
||||||
|
format: wgpu::VertexFormat::Float32x4,
|
||||||
|
},
|
||||||
|
wgpu::VertexAttribute {
|
||||||
|
offset: (std::mem::size_of::<[f32; 2]>()
|
||||||
|
+ std::mem::size_of::<f32>()
|
||||||
|
+ std::mem::size_of::<f32>()
|
||||||
|
+ std::mem::size_of::<[f32; 4]>())
|
||||||
|
as wgpu::BufferAddress,
|
||||||
|
shader_location: 9,
|
||||||
|
format: wgpu::VertexFormat::Float32x4,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
#[derive(Copy, Clone, Debug, bytemuck::Pod, bytemuck::Zeroable)]
|
#[derive(Copy, Clone, Debug, bytemuck::Pod, bytemuck::Zeroable)]
|
||||||
struct ScreenUniforms {
|
struct ScreenUniforms {
|
||||||
|
|
@ -201,6 +255,65 @@ const SPRITE_VERTICES: &[Vertex] = &[
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
struct VertexBufferPool<T> {
|
||||||
|
buffers: Vec<VertexBuffer<T>>,
|
||||||
|
next_free_buffer: usize,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<T: bytemuck::Pod> VertexBufferPool<T> {
|
||||||
|
fn new() -> Self {
|
||||||
|
VertexBufferPool {
|
||||||
|
buffers: Vec::new(),
|
||||||
|
next_free_buffer: 0,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn clear(&mut self) {
|
||||||
|
self.next_free_buffer = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
fn new_buffer(&mut self, device: &wgpu::Device) -> VertexBufferHandle {
|
||||||
|
if self.next_free_buffer >= self.buffers.len() {
|
||||||
|
let max_sprites: usize = 4096;
|
||||||
|
let buffer = device.create_buffer(&wgpu::BufferDescriptor {
|
||||||
|
label: Some("Vertex Buffer"),
|
||||||
|
size: (max_sprites * std::mem::size_of::<T>()).try_into().unwrap(),
|
||||||
|
mapped_at_creation: false,
|
||||||
|
usage: wgpu::BufferUsages::VERTEX | wgpu::BufferUsages::COPY_DST,
|
||||||
|
});
|
||||||
|
self.buffers.push(VertexBuffer {
|
||||||
|
buffer,
|
||||||
|
capacity: max_sprites,
|
||||||
|
vec: Vec::with_capacity(max_sprites),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
let index = self.next_free_buffer;
|
||||||
|
self.next_free_buffer += 1;
|
||||||
|
let vb = &mut self.buffers[index];
|
||||||
|
vb.vec.clear();
|
||||||
|
VertexBufferHandle {
|
||||||
|
index,
|
||||||
|
capacity: vb.capacity,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get(&self, handle: &VertexBufferHandle) -> &VertexBuffer<T> {
|
||||||
|
&self.buffers[handle.index]
|
||||||
|
}
|
||||||
|
|
||||||
|
fn get_mut(&mut self, handle: &VertexBufferHandle) -> &mut VertexBuffer<T> {
|
||||||
|
&mut self.buffers[handle.index]
|
||||||
|
}
|
||||||
|
|
||||||
|
fn copy_instance_buffers(&mut self, queue: &wgpu::Queue) {
|
||||||
|
for i in 0..self.next_free_buffer {
|
||||||
|
let vb = &self.buffers[i];
|
||||||
|
queue.write_buffer(&vb.buffer, 0, bytemuck::cast_slice(&vb.vec));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
struct State {
|
struct State {
|
||||||
surface: wgpu::Surface,
|
surface: wgpu::Surface,
|
||||||
device: wgpu::Device,
|
device: wgpu::Device,
|
||||||
|
|
@ -208,15 +321,18 @@ struct State {
|
||||||
config: wgpu::SurfaceConfiguration,
|
config: wgpu::SurfaceConfiguration,
|
||||||
size: winit::dpi::PhysicalSize<u32>,
|
size: winit::dpi::PhysicalSize<u32>,
|
||||||
window: Window,
|
window: Window,
|
||||||
render_pipeline: wgpu::RenderPipeline,
|
|
||||||
|
|
||||||
sprite_vertex_buffer: wgpu::Buffer,
|
sprite_vertex_buffer: wgpu::Buffer,
|
||||||
sprite_instance_buffers: Vec<VertexBuffer<SpriteInstance>>,
|
|
||||||
next_free_sprite_instance_buffer: usize,
|
sprite_pipeline: wgpu::RenderPipeline,
|
||||||
|
sprite_instance_buffers: VertexBufferPool<SpriteInstance>,
|
||||||
|
|
||||||
sprite_bind_group_layout: wgpu::BindGroupLayout,
|
sprite_bind_group_layout: wgpu::BindGroupLayout,
|
||||||
sprite_textures: HashMap<u32, wgpu::BindGroup>,
|
sprite_textures: HashMap<u32, wgpu::BindGroup>,
|
||||||
|
|
||||||
|
circle_pipeline: wgpu::RenderPipeline,
|
||||||
|
circle_instance_buffers: VertexBufferPool<CircleInstance>,
|
||||||
|
|
||||||
write_textures: HashMap<u32, texture::Texture>,
|
write_textures: HashMap<u32, texture::Texture>,
|
||||||
|
|
||||||
screen_uniform: ScreenUniforms,
|
screen_uniform: ScreenUniforms,
|
||||||
|
|
@ -324,7 +440,7 @@ impl State {
|
||||||
let sprite_pipeline_layout =
|
let sprite_pipeline_layout =
|
||||||
device.create_pipeline_layout(&wgpu::PipelineLayoutDescriptor {
|
device.create_pipeline_layout(&wgpu::PipelineLayoutDescriptor {
|
||||||
label: Some("Sprite Pipeline Layout"),
|
label: Some("Sprite Pipeline Layout"),
|
||||||
bind_group_layouts: &[&sprite_bind_group_layout, &screen_uniform_bind_group_layout],
|
bind_group_layouts: &[&screen_uniform_bind_group_layout, &sprite_bind_group_layout],
|
||||||
push_constant_ranges: &[],
|
push_constant_ranges: &[],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -366,6 +482,56 @@ impl State {
|
||||||
multiview: None,
|
multiview: None,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
let circle_shader = device.create_shader_module(wgpu::ShaderModuleDescriptor {
|
||||||
|
label: Some("Circle Shader"),
|
||||||
|
source: wgpu::ShaderSource::Wgsl(include_str!("circle_shader.wgsl").into()),
|
||||||
|
});
|
||||||
|
|
||||||
|
let circle_pipeline_layout =
|
||||||
|
device.create_pipeline_layout(&wgpu::PipelineLayoutDescriptor {
|
||||||
|
label: Some("Sprite Pipeline Layout"),
|
||||||
|
bind_group_layouts: &[&screen_uniform_bind_group_layout],
|
||||||
|
push_constant_ranges: &[],
|
||||||
|
});
|
||||||
|
|
||||||
|
let circle_pipeline = device.create_render_pipeline(&wgpu::RenderPipelineDescriptor {
|
||||||
|
label: Some("Circle Pipeline"),
|
||||||
|
layout: Some(&circle_pipeline_layout),
|
||||||
|
vertex: wgpu::VertexState {
|
||||||
|
module: &circle_shader,
|
||||||
|
entry_point: "vs_main",
|
||||||
|
buffers: &[Vertex::desc(), CircleInstance::desc()],
|
||||||
|
},
|
||||||
|
fragment: Some(wgpu::FragmentState {
|
||||||
|
module: &circle_shader,
|
||||||
|
entry_point: "fs_main",
|
||||||
|
targets: &[Some(wgpu::ColorTargetState {
|
||||||
|
format: config.format,
|
||||||
|
blend: Some(wgpu::BlendState::ALPHA_BLENDING),
|
||||||
|
write_mask: wgpu::ColorWrites::ALL,
|
||||||
|
})],
|
||||||
|
}),
|
||||||
|
primitive: wgpu::PrimitiveState {
|
||||||
|
topology: wgpu::PrimitiveTopology::TriangleList,
|
||||||
|
strip_index_format: None,
|
||||||
|
front_face: wgpu::FrontFace::Ccw,
|
||||||
|
cull_mode: Some(wgpu::Face::Back),
|
||||||
|
// Setting this to anything other than Fill requires Features::NON_FILL_POLYGON_MODE
|
||||||
|
polygon_mode: wgpu::PolygonMode::Fill,
|
||||||
|
// Requires Features::DEPTH_CLIP_CONTROL
|
||||||
|
unclipped_depth: false,
|
||||||
|
// Requires Features::CONSERVATIVE_RASTERIZATION
|
||||||
|
conservative: false,
|
||||||
|
},
|
||||||
|
depth_stencil: None,
|
||||||
|
multisample: wgpu::MultisampleState {
|
||||||
|
count: 1,
|
||||||
|
mask: !0,
|
||||||
|
alpha_to_coverage_enabled: false,
|
||||||
|
},
|
||||||
|
multiview: None,
|
||||||
|
});
|
||||||
|
|
||||||
let sprite_vertex_buffer = device.create_buffer_init(&wgpu::util::BufferInitDescriptor {
|
let sprite_vertex_buffer = device.create_buffer_init(&wgpu::util::BufferInitDescriptor {
|
||||||
label: Some("Sprite Vertex Buffer"),
|
label: Some("Sprite Vertex Buffer"),
|
||||||
contents: bytemuck::cast_slice(SPRITE_VERTICES),
|
contents: bytemuck::cast_slice(SPRITE_VERTICES),
|
||||||
|
|
@ -379,14 +545,17 @@ impl State {
|
||||||
queue: hardware.queue,
|
queue: hardware.queue,
|
||||||
config,
|
config,
|
||||||
size,
|
size,
|
||||||
render_pipeline: sprite_pipeline,
|
sprite_pipeline,
|
||||||
|
|
||||||
sprite_vertex_buffer,
|
sprite_vertex_buffer,
|
||||||
sprite_instance_buffers: Vec::new(),
|
sprite_instance_buffers: VertexBufferPool::new(),
|
||||||
next_free_sprite_instance_buffer: 0,
|
|
||||||
|
|
||||||
sprite_bind_group_layout,
|
sprite_bind_group_layout,
|
||||||
sprite_textures: HashMap::new(),
|
sprite_textures: HashMap::new(),
|
||||||
|
|
||||||
|
circle_pipeline,
|
||||||
|
circle_instance_buffers: VertexBufferPool::new(),
|
||||||
|
|
||||||
write_textures: HashMap::new(),
|
write_textures: HashMap::new(),
|
||||||
screen_uniform,
|
screen_uniform,
|
||||||
screen_uniform_buffer,
|
screen_uniform_buffer,
|
||||||
|
|
@ -422,8 +591,9 @@ impl State {
|
||||||
fn render(&mut self, commands: Vec<GraphicsCommand>) -> Result<(), wgpu::SurfaceError> {
|
fn render(&mut self, commands: Vec<GraphicsCommand>) -> Result<(), wgpu::SurfaceError> {
|
||||||
let _span = span!("context render");
|
let _span = span!("context render");
|
||||||
|
|
||||||
// Reset vertex buffers.
|
// Reset instance buffers.
|
||||||
self.next_free_sprite_instance_buffer = 0;
|
self.sprite_instance_buffers.clear();
|
||||||
|
self.circle_instance_buffers.clear();
|
||||||
|
|
||||||
let mut builder = FrameBuilder::new(self)?;
|
let mut builder = FrameBuilder::new(self)?;
|
||||||
for command in commands {
|
for command in commands {
|
||||||
|
|
@ -503,59 +673,23 @@ impl State {
|
||||||
self.write_textures.insert(id, texture);
|
self.write_textures.insert(id, texture);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn new_vertex_buffer(&mut self) -> VertexBufferHandle {
|
|
||||||
if self.next_free_sprite_instance_buffer >= self.sprite_instance_buffers.len() {
|
|
||||||
let max_sprites: usize = 4096;
|
|
||||||
let buffer = self.device.create_buffer(&wgpu::BufferDescriptor {
|
|
||||||
label: Some("Sprite Instance Buffer"),
|
|
||||||
size: (max_sprites * std::mem::size_of::<SpriteInstance>())
|
|
||||||
.try_into()
|
|
||||||
.unwrap(),
|
|
||||||
mapped_at_creation: false,
|
|
||||||
usage: wgpu::BufferUsages::VERTEX | wgpu::BufferUsages::COPY_DST,
|
|
||||||
});
|
|
||||||
self.sprite_instance_buffers.push(VertexBuffer {
|
|
||||||
buffer,
|
|
||||||
capacity: max_sprites,
|
|
||||||
vec: Vec::with_capacity(max_sprites),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
let index = self.next_free_sprite_instance_buffer;
|
|
||||||
self.next_free_sprite_instance_buffer += 1;
|
|
||||||
let vb = &mut self.sprite_instance_buffers[index];
|
|
||||||
vb.vec.clear();
|
|
||||||
VertexBufferHandle {
|
|
||||||
index,
|
|
||||||
capacity: vb.capacity,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn get_sprite_instance_buffer(
|
|
||||||
&self,
|
|
||||||
handle: &VertexBufferHandle,
|
|
||||||
) -> &VertexBuffer<SpriteInstance> {
|
|
||||||
&self.sprite_instance_buffers[handle.index]
|
|
||||||
}
|
|
||||||
|
|
||||||
fn get_sprite_instance_buffer_mut(
|
|
||||||
&mut self,
|
|
||||||
handle: &VertexBufferHandle,
|
|
||||||
) -> &mut VertexBuffer<SpriteInstance> {
|
|
||||||
&mut self.sprite_instance_buffers[handle.index]
|
|
||||||
}
|
|
||||||
|
|
||||||
fn copy_instance_buffers(&mut self) {
|
fn copy_instance_buffers(&mut self) {
|
||||||
for i in 0..self.next_free_sprite_instance_buffer {
|
self.sprite_instance_buffers
|
||||||
let vb = &self.sprite_instance_buffers[i];
|
.copy_instance_buffers(&self.queue);
|
||||||
self.queue
|
self.circle_instance_buffers
|
||||||
.write_buffer(&vb.buffer, 0, bytemuck::cast_slice(&vb.vec));
|
.copy_instance_buffers(&self.queue);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
|
||||||
|
enum DrawMode {
|
||||||
|
Sprites,
|
||||||
|
Circles,
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
struct DrawCall {
|
struct DrawCall {
|
||||||
|
mode: DrawMode,
|
||||||
texture_id: Option<u32>,
|
texture_id: Option<u32>,
|
||||||
vertex_buffer: VertexBufferHandle,
|
vertex_buffer: VertexBufferHandle,
|
||||||
draw_start: u32,
|
draw_start: u32,
|
||||||
|
|
@ -563,8 +697,9 @@ struct DrawCall {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl DrawCall {
|
impl DrawCall {
|
||||||
pub fn new(vertex_buffer: VertexBufferHandle, draw_start: u32) -> Self {
|
pub fn new(mode: DrawMode, vertex_buffer: VertexBufferHandle, draw_start: u32) -> Self {
|
||||||
DrawCall {
|
DrawCall {
|
||||||
|
mode,
|
||||||
texture_id: None,
|
texture_id: None,
|
||||||
vertex_buffer,
|
vertex_buffer,
|
||||||
draw_start,
|
draw_start,
|
||||||
|
|
@ -573,7 +708,7 @@ impl DrawCall {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn new_at_buffer_tail(&self) -> Self {
|
pub fn new_at_buffer_tail(&self) -> Self {
|
||||||
DrawCall::new(self.vertex_buffer.clone(), self.draw_end)
|
DrawCall::new(self.mode, self.vertex_buffer.clone(), self.draw_end)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn switch_textures(&self, id: u32) -> DrawCall {
|
pub fn switch_textures(&self, id: u32) -> DrawCall {
|
||||||
|
|
@ -598,18 +733,32 @@ impl DrawCall {
|
||||||
|
|
||||||
pub fn draw<'a>(&self, state: &'a State, pass: &mut wgpu::RenderPass<'a>) {
|
pub fn draw<'a>(&self, state: &'a State, pass: &mut wgpu::RenderPass<'a>) {
|
||||||
if self.draw_end > self.draw_start {
|
if self.draw_end > self.draw_start {
|
||||||
let texture_id = match self.texture_id {
|
let vb = match self.mode {
|
||||||
Some(id) => id,
|
DrawMode::Sprites => {
|
||||||
None => return,
|
match self.texture_id {
|
||||||
|
Some(id) => {
|
||||||
|
let bind_group = state.sprite_textures.get(&id).unwrap();
|
||||||
|
pass.set_bind_group(1, bind_group, &[]);
|
||||||
|
}
|
||||||
|
None => (),
|
||||||
|
};
|
||||||
|
|
||||||
|
&state
|
||||||
|
.sprite_instance_buffers
|
||||||
|
.get(&self.vertex_buffer)
|
||||||
|
.buffer
|
||||||
|
}
|
||||||
|
|
||||||
|
DrawMode::Circles => {
|
||||||
|
&state
|
||||||
|
.circle_instance_buffers
|
||||||
|
.get(&self.vertex_buffer)
|
||||||
|
.buffer
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
pass.set_bind_group(0, &state.screen_uniform_bind_group, &[]);
|
||||||
let bind_group = state.sprite_textures.get(&texture_id).unwrap();
|
|
||||||
pass.set_bind_group(0, bind_group, &[]);
|
|
||||||
|
|
||||||
let vb = state.get_sprite_instance_buffer(&self.vertex_buffer);
|
|
||||||
pass.set_bind_group(1, &state.screen_uniform_bind_group, &[]);
|
|
||||||
pass.set_vertex_buffer(0, state.sprite_vertex_buffer.slice(..));
|
pass.set_vertex_buffer(0, state.sprite_vertex_buffer.slice(..));
|
||||||
pass.set_vertex_buffer(1, vb.buffer.slice(..));
|
pass.set_vertex_buffer(1, vb.slice(..));
|
||||||
|
|
||||||
pass.draw(
|
pass.draw(
|
||||||
0..SPRITE_VERTICES.len() as u32,
|
0..SPRITE_VERTICES.len() as u32,
|
||||||
|
|
@ -626,6 +775,7 @@ struct FrameBuilder<'a> {
|
||||||
encoder: wgpu::CommandEncoder,
|
encoder: wgpu::CommandEncoder,
|
||||||
output: wgpu::SurfaceTexture,
|
output: wgpu::SurfaceTexture,
|
||||||
|
|
||||||
|
mode: DrawMode,
|
||||||
target: Rc<wgpu::TextureView>,
|
target: Rc<wgpu::TextureView>,
|
||||||
color: Option<[f64; 4]>,
|
color: Option<[f64; 4]>,
|
||||||
draw_calls: Vec<DrawCall>,
|
draw_calls: Vec<DrawCall>,
|
||||||
|
|
@ -655,6 +805,7 @@ impl<'a> FrameBuilder<'a> {
|
||||||
encoder,
|
encoder,
|
||||||
output,
|
output,
|
||||||
|
|
||||||
|
mode: DrawMode::Sprites,
|
||||||
target: last_view,
|
target: last_view,
|
||||||
color: None,
|
color: None,
|
||||||
draw_calls: Vec::new(),
|
draw_calls: Vec::new(),
|
||||||
|
|
@ -702,7 +853,8 @@ impl<'a> FrameBuilder<'a> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
GraphicsCommand::Print(pc) => println!("{}", pc.text),
|
GraphicsCommand::Print(pc) => println!("{}", pc.text),
|
||||||
GraphicsCommand::Sprite(sc) => self.push_sprite(sc),
|
GraphicsCommand::Sprite(si) => self.push_sprite(si),
|
||||||
|
GraphicsCommand::Circle(ci) => self.push_circle(ci),
|
||||||
GraphicsCommand::UseTexture(id) => self.use_texture(id),
|
GraphicsCommand::UseTexture(id) => self.use_texture(id),
|
||||||
GraphicsCommand::EndFrame => self.flush(),
|
GraphicsCommand::EndFrame => self.flush(),
|
||||||
|
|
||||||
|
|
@ -729,6 +881,19 @@ impl<'a> FrameBuilder<'a> {
|
||||||
self.target = target;
|
self.target = target;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn new_instance_buffer(&mut self) -> VertexBufferHandle {
|
||||||
|
match self.mode {
|
||||||
|
DrawMode::Sprites => self
|
||||||
|
.state
|
||||||
|
.sprite_instance_buffers
|
||||||
|
.new_buffer(&self.state.device),
|
||||||
|
DrawMode::Circles => self
|
||||||
|
.state
|
||||||
|
.circle_instance_buffers
|
||||||
|
.new_buffer(&self.state.device),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn use_texture(&mut self, texture_id: u32) {
|
fn use_texture(&mut self, texture_id: u32) {
|
||||||
match self.draw_calls.last_mut() {
|
match self.draw_calls.last_mut() {
|
||||||
Some(call) => match call.texture_id {
|
Some(call) => match call.texture_id {
|
||||||
|
|
@ -748,42 +913,67 @@ impl<'a> FrameBuilder<'a> {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
None => {
|
None => {
|
||||||
let mut call = DrawCall::new(self.state.new_vertex_buffer(), 0);
|
let mut call = DrawCall::new(self.mode, self.new_instance_buffer(), 0);
|
||||||
call.texture_id = Some(texture_id);
|
call.texture_id = Some(texture_id);
|
||||||
self.draw_calls.push(call);
|
self.draw_calls.push(call);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn switch_mode(&mut self, mode: DrawMode) {
|
||||||
|
if self.mode != mode {
|
||||||
|
self.flush();
|
||||||
|
self.draw_calls.clear();
|
||||||
|
self.mode = mode;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn get_sprite_instance_buffer(&mut self) -> &mut VertexBuffer<SpriteInstance> {
|
fn get_sprite_instance_buffer(&mut self) -> &mut VertexBuffer<SpriteInstance> {
|
||||||
|
self.switch_mode(DrawMode::Sprites);
|
||||||
match self.draw_calls.last_mut() {
|
match self.draw_calls.last_mut() {
|
||||||
Some(call) => match call.allocate_capacity(1) {
|
Some(call) => match call.allocate_capacity(1) {
|
||||||
Some(vb) => return self.state.get_sprite_instance_buffer_mut(&vb),
|
Some(vb) => return self.state.sprite_instance_buffers.get_mut(&vb),
|
||||||
None => {}
|
None => {}
|
||||||
},
|
},
|
||||||
None => {}
|
None => {}
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut call = DrawCall::new(self.state.new_vertex_buffer(), 0);
|
let mut call = DrawCall::new(self.mode, self.new_instance_buffer(), 0);
|
||||||
let vb = call.allocate_capacity(1).unwrap();
|
let vb = call.allocate_capacity(1).unwrap();
|
||||||
self.draw_calls.push(call);
|
self.draw_calls.push(call);
|
||||||
self.state.get_sprite_instance_buffer_mut(&vb)
|
self.state.sprite_instance_buffers.get_mut(&vb)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn push_sprite(&mut self, sc: script::graphics::SpriteCommand) {
|
fn push_sprite(&mut self, si: SpriteInstance) {
|
||||||
let vertex_buffer = self.get_sprite_instance_buffer();
|
let vertex_buffer = self.get_sprite_instance_buffer();
|
||||||
vertex_buffer.vec.push(SpriteInstance {
|
vertex_buffer.vec.push(si);
|
||||||
src_top_left: [sc.u, sc.v],
|
}
|
||||||
src_dims: [sc.sw, sc.sh],
|
|
||||||
dest_top_left: [sc.x, sc.y],
|
fn get_circle_instance_buffer(&mut self) -> &mut VertexBuffer<CircleInstance> {
|
||||||
dest_dims: [sc.w, sc.h],
|
self.switch_mode(DrawMode::Circles);
|
||||||
});
|
match self.draw_calls.last_mut() {
|
||||||
|
Some(call) => match call.allocate_capacity(1) {
|
||||||
|
Some(vb) => return self.state.circle_instance_buffers.get_mut(&vb),
|
||||||
|
None => {}
|
||||||
|
},
|
||||||
|
None => {}
|
||||||
|
};
|
||||||
|
|
||||||
|
let mut call = DrawCall::new(self.mode, self.new_instance_buffer(), 0);
|
||||||
|
let vb = call.allocate_capacity(1).unwrap();
|
||||||
|
self.draw_calls.push(call);
|
||||||
|
self.state.circle_instance_buffers.get_mut(&vb)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn push_circle(&mut self, ci: CircleInstance) {
|
||||||
|
let vertex_buffer = self.get_circle_instance_buffer();
|
||||||
|
vertex_buffer.vec.push(ci);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn flush(&mut self) {
|
fn flush(&mut self) {
|
||||||
let first_call = match self.draw_calls.last() {
|
let first_call = match self.draw_calls.last() {
|
||||||
Some(call) => call.new_at_buffer_tail(),
|
Some(call) => call.new_at_buffer_tail(),
|
||||||
None => DrawCall::new(self.state.new_vertex_buffer(), 0),
|
None => DrawCall::new(self.mode, self.new_instance_buffer(), 0),
|
||||||
};
|
};
|
||||||
|
|
||||||
if self.draw_calls.len() > 0 {
|
if self.draw_calls.len() > 0 {
|
||||||
|
|
@ -809,7 +999,11 @@ impl<'a> FrameBuilder<'a> {
|
||||||
depth_stencil_attachment: None,
|
depth_stencil_attachment: None,
|
||||||
});
|
});
|
||||||
|
|
||||||
pass.set_pipeline(&self.state.render_pipeline);
|
match self.mode {
|
||||||
|
DrawMode::Sprites => pass.set_pipeline(&self.state.sprite_pipeline),
|
||||||
|
DrawMode::Circles => pass.set_pipeline(&self.state.circle_pipeline),
|
||||||
|
}
|
||||||
|
|
||||||
for call in &self.draw_calls {
|
for call in &self.draw_calls {
|
||||||
call.draw(&self.state, &mut pass);
|
call.draw(&self.state, &mut pass);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,18 +15,6 @@ pub struct ClearCommand {
|
||||||
pub color: [f64; 4],
|
pub color: [f64; 4],
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
|
||||||
pub struct SpriteCommand {
|
|
||||||
pub x: f32,
|
|
||||||
pub y: f32,
|
|
||||||
pub w: f32,
|
|
||||||
pub h: f32,
|
|
||||||
pub u: f32,
|
|
||||||
pub v: f32,
|
|
||||||
pub sw: f32,
|
|
||||||
pub sh: f32,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct CreateTextureCommand {
|
pub struct CreateTextureCommand {
|
||||||
pub id: u32,
|
pub id: u32,
|
||||||
|
|
@ -38,7 +26,8 @@ pub struct CreateTextureCommand {
|
||||||
pub enum GraphicsCommand {
|
pub enum GraphicsCommand {
|
||||||
Clear(ClearCommand),
|
Clear(ClearCommand),
|
||||||
Print(PrintCommand),
|
Print(PrintCommand),
|
||||||
Sprite(SpriteCommand),
|
Circle(crate::CircleInstance),
|
||||||
|
Sprite(crate::SpriteInstance),
|
||||||
CreateTexture(CreateTextureCommand),
|
CreateTexture(CreateTextureCommand),
|
||||||
CreateWritableTexture {
|
CreateWritableTexture {
|
||||||
id: u32,
|
id: u32,
|
||||||
|
|
@ -78,16 +67,26 @@ impl GraphicsImpl {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn spr(&self, x: f32, y: f32, w: f32, h: f32, u: f32, v: f32, sw: f32, sh: f32) {
|
fn spr(&self, x: f32, y: f32, w: f32, h: f32, u: f32, v: f32, sw: f32, sh: f32) {
|
||||||
let _ = self.sender.send(GraphicsCommand::Sprite(SpriteCommand {
|
let _ = self
|
||||||
x,
|
.sender
|
||||||
y,
|
.send(GraphicsCommand::Sprite(crate::SpriteInstance {
|
||||||
w,
|
src_top_left: [u, v],
|
||||||
h,
|
src_dims: [sw, sh],
|
||||||
u,
|
dest_top_left: [x, y],
|
||||||
v,
|
dest_dims: [w, h],
|
||||||
sw,
|
}));
|
||||||
sh,
|
}
|
||||||
}));
|
|
||||||
|
fn circle(&self, x: f32, y: f32, r: f32, s: f32) {
|
||||||
|
let _ = self
|
||||||
|
.sender
|
||||||
|
.send(GraphicsCommand::Circle(crate::CircleInstance {
|
||||||
|
center: [x, y],
|
||||||
|
radius: r,
|
||||||
|
stroke_width: s,
|
||||||
|
stroke_color: [1.0, 0.0, 0.0, 1.0],
|
||||||
|
fill_color: [1.0, 1.0, 1.0, 1.0],
|
||||||
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
fn create_texture(
|
fn create_texture(
|
||||||
|
|
@ -183,6 +182,15 @@ impl GraphicsAPI {
|
||||||
)?,
|
)?,
|
||||||
)?;
|
)?;
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
let gfx = gfx.clone();
|
||||||
|
builder.export(
|
||||||
|
"circle",
|
||||||
|
ctx.new_fn(move |_: &ContextRef, x: f32, y: f32, r: f32, s: f32| {
|
||||||
|
gfx.circle(x, y, r, s)
|
||||||
|
})?,
|
||||||
|
)?;
|
||||||
|
}
|
||||||
{
|
{
|
||||||
let gfx = gfx.clone();
|
let gfx = gfx.clone();
|
||||||
builder.export(
|
builder.export(
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,6 @@
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
// Vertex shader
|
// Vertex shader
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
struct ScreenUniform {
|
|
||||||
resolution : vec2f,
|
|
||||||
};
|
|
||||||
@group(1) @binding(0) // 1.
|
|
||||||
var<uniform> screen : ScreenUniform;
|
|
||||||
|
|
||||||
struct VertexInput {
|
struct VertexInput {
|
||||||
@location(0) position : vec3<f32>,
|
@location(0) position : vec3<f32>,
|
||||||
|
|
@ -23,12 +19,44 @@ struct VertexOutput {
|
||||||
@location(0) tex_coords : vec2<f32>,
|
@location(0) tex_coords : vec2<f32>,
|
||||||
};
|
};
|
||||||
|
|
||||||
const RES = vec2f(320.0, 240.0); // The logical resolution of the screen.
|
|
||||||
|
|
||||||
@vertex fn vs_main(vertex : VertexInput, instance : InstanceInput)->VertexOutput {
|
@vertex fn vs_main(vertex : VertexInput, instance : InstanceInput)->VertexOutput {
|
||||||
var out : VertexOutput;
|
var out : VertexOutput;
|
||||||
out.tex_coords = instance.src_top_left + (vertex.tex_coords * instance.src_dims);
|
out.tex_coords = instance.src_top_left + (vertex.tex_coords * instance.src_dims);
|
||||||
|
|
||||||
|
let in_pos = instance.dest_top_left + (vec2f(vertex.position.x, vertex.position.y) * instance.dest_dims);
|
||||||
|
|
||||||
|
let position = adjust_for_resolution(in_pos);
|
||||||
|
out.clip_position = vec4f(position.x, position.y, vertex.position.z, 1.0);
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// Fragment shader
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@group(1) @binding(0) var t_diffuse : texture_2d<f32>;
|
||||||
|
@group(1) @binding(1) var s_diffuse : sampler;
|
||||||
|
|
||||||
|
@fragment fn fs_main(in : VertexOutput)->@location(0) vec4<f32> {
|
||||||
|
let tc = vec2(u32(in.tex_coords.x), u32(in.tex_coords.y));
|
||||||
|
return textureLoad(t_diffuse, tc, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// Resolution Handling
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
struct ScreenUniform {
|
||||||
|
resolution : vec2f,
|
||||||
|
};
|
||||||
|
@group(0) @binding(0) // 1.
|
||||||
|
var<uniform> screen : ScreenUniform;
|
||||||
|
|
||||||
|
const RES = vec2f(320.0, 240.0); // The logical resolution of the screen.
|
||||||
|
|
||||||
|
fn adjust_for_resolution(in_pos: vec2<f32>) -> vec2<f32> {
|
||||||
|
// Adjust in_pos for the "resolution" of the screen.
|
||||||
let RES_AR = RES.x / RES.y; // The aspect ratio of the logical screen.
|
let RES_AR = RES.x / RES.y; // The aspect ratio of the logical screen.
|
||||||
|
|
||||||
// the actual resolution of the screen.
|
// the actual resolution of the screen.
|
||||||
|
|
@ -47,22 +75,10 @@ const RES = vec2f(320.0, 240.0); // The logical resolution of the screen.
|
||||||
}
|
}
|
||||||
var new_logical_resolution = RES + nudge;
|
var new_logical_resolution = RES + nudge;
|
||||||
|
|
||||||
// Now we can convert the incoming position to clip space, in the new screen.
|
// Now we can convert the incoming position to clip space, in the new screen.
|
||||||
let in_pos = instance.dest_top_left + (vec2f(vertex.position.x, vertex.position.y) * instance.dest_dims);
|
|
||||||
let centered = in_pos + (nudge / 2.0);
|
let centered = in_pos + (nudge / 2.0);
|
||||||
var position = (2.0 * centered / new_logical_resolution) - 1.0;
|
var position = (2.0 * centered / new_logical_resolution) - 1.0;
|
||||||
position.y = -position.y;
|
position.y = -position.y;
|
||||||
|
|
||||||
out.clip_position = vec4f(position.x, position.y, vertex.position.z, 1.0);
|
return position;
|
||||||
return out;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Fragment shader....
|
|
||||||
|
|
||||||
@group(0) @binding(0) var t_diffuse : texture_2d<f32>;
|
|
||||||
@group(0) @binding(1) var s_diffuse : sampler;
|
|
||||||
|
|
||||||
@fragment fn fs_main(in : VertexOutput)->@location(0) vec4<f32> {
|
|
||||||
let tc = vec2(u32(in.tex_coords.x), u32(in.tex_coords.y));
|
|
||||||
return textureLoad(t_diffuse, tc, 0);
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
2
types/graphics-core.d.ts
vendored
2
types/graphics-core.d.ts
vendored
|
|
@ -15,6 +15,8 @@ export function spr(
|
||||||
sh: number
|
sh: number
|
||||||
);
|
);
|
||||||
|
|
||||||
|
export function circle(x: number, y: number, r: number, s: number);
|
||||||
|
|
||||||
export function create_texture(
|
export function create_texture(
|
||||||
buffer: ArrayBuffer,
|
buffer: ArrayBuffer,
|
||||||
label: string | undefined
|
label: string | undefined
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue