rust/lib-hedgewars-engine/src/render.rs
author raptor <buckyballreaction@gmail.com>
Tue, 13 Aug 2019 13:20:28 -0600
branch0.9.25
changeset 15332 9a545985360b
parent 14335 97be4f6bf264
child 14703 81030dcbd2d8
permissions -rw-r--r--
Remove usage of macdeployqt in favor of CMake BundleUtilities. BundleUtilities properly finds all dependencies and adds them to the .app automatically. It also fixes rpath and install_name issues for any of the binaries or dependencies

use gfx::{
    format,
    ConstantBuffer,
    DepthTarget,
    RenderTarget,
    TextureSampler,
    VertexBuffer,
};

struct Camera {
    pos: [f32; 2]
}

fn render() {

}