aquaengine 0.0.2

AquaEngine is a RAD framework for graphics and computes
Documentation
//! `AquaEngine` device

/// Physial device
pub trait Physical
{
}

/// Family queue device
pub trait FamilyQueue {
    /// Returns true if can computes
    fn can_graphic(&self) -> bool;

    /// Returns true if can graphics
    fn can_compute(&self) -> bool;
}

/// Logical device
pub trait Logical {
}