forked from processing/libprocessing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackground_image.rs
More file actions
42 lines (34 loc) · 1.05 KB
/
background_image.rs
File metadata and controls
42 lines (34 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
mod glfw;
use glfw::GlfwContext;
use processing::prelude::*;
use processing_render::render::command::DrawCommand;
fn main() {
match sketch() {
Ok(_) => {
eprintln!("Sketch completed successfully");
exit(0).unwrap();
}
Err(e) => {
eprintln!("Sketch error: {:?}", e);
exit(1).unwrap();
}
};
}
fn sketch() -> error::Result<()> {
let mut glfw_ctx = GlfwContext::new(400, 400)?;
init()?;
let width = 400;
let height = 400;
let scale_factor = 1.0;
let window_handle = glfw_ctx.get_window();
let display_handle = glfw_ctx.get_display();
let surface = surface_create(window_handle, display_handle, width, height, scale_factor)?;
let graphics = graphics_create(surface, width, height)?;
let image = image_load("images/logo.png")?;
while glfw_ctx.poll_events() {
graphics_begin_draw(graphics)?;
graphics_record_command(graphics, DrawCommand::BackgroundImage(image))?;
graphics_end_draw(graphics)?;
}
Ok(())
}