[][src]Crate sokol

Native bindings to the sokol header-only, cross-platform C libraries.

Example

This is a minimal example of using sokol::app and sokol::gfx to create a window, then clear its content each frame with a solid color.

use sokol::{
    app::*,
    gfx::*,
};

struct ExampleApp {
    pass_action: SgPassAction,
}

impl SApp for ExampleApp {
    fn sapp_init(&mut self) {
        sg_setup(&SgDesc {
            ..Default::default()
        });
    }

    fn sapp_frame(&mut self) {
        sg_begin_default_pass(&self.pass_action, sapp_width(), sapp_height());
        sg_end_pass();
        sg_commit();
    }

    fn sapp_cleanup(&mut self) {
        sg_shutdown();
    }

    fn sapp_event(&mut self, _event: SAppEvent) {
        // Ignore events
    }
}

fn main() {
    let app = ExampleApp {
        pass_action: SgPassAction {
            colors: vec!(
                SgColorAttachmentAction {
                    action: SgAction::Clear,
                    val: [0.5, 0.0, 0.25, 1.0],
                }
            ),
            ..Default::default()
        }
    };

    sapp_run(app, SAppDesc {
        window_title: "Example".to_string(),
        ..Default::default()
    });
}

Modules

app

sokol::app - cross-platform application wrapper

audio

sokol::audio - cross-platform audio-streaming API

gfx

sokol::gfx - simple 3D API wrapper

time

sokol::time - simple cross-platform time measurement