Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 836 Bytes

CRATE_README.md

File metadata and controls

30 lines (23 loc) · 836 Bytes

Safe abstractions for drawing on Windows using Direct2D

Example

extern crate direct2d;

use direct2d::device_context::{DeviceContext, IDeviceContext};
use direct2d::render_target::IRenderTarget;
use direct2d::brush::SolidColorBrush;
use direct2d::image::Bitmap;

fn draw(context: &mut DeviceContext, target: &Bitmap) {
    let brush = SolidColorBrush::create(&context)
        .with_color(0xFF_7F_7F)
        .build().unwrap();

    context.begin_draw();
    context.set_target(target);
    context.clear(0xFF_FF_FF.into());
    
    context.draw_line((10.0, 10.0).into(), (20.0, 20.0).into(), &brush, 2.0, None);
    context.draw_line((10.0, 20.0).into(), (20.0, 10.0).into(), &brush, 2.0, None);

    match context.end_draw() {
        Ok(_) => {/* cool */},
        Err(_) => panic!("Uh oh, rendering failed!"),
    }
}