Enum glium::debug::Severity [] [src]

pub enum Severity {
    Notification,
    Low,
    Medium,
    High,
}

Severity of a debug message.

Variants

Notification

Anything that isn't an error or performance issue.

Low

Redundant state-change performance warning, or unimportant undefined behavior.

Medium

Major performance warnings, shader compilation/linking warnings, or the use of deprecated functionality.

High

All OpenGL Errors, shader compilation/linking errors, or highly-dangerous undefined behavior.

Trait Implementations

Derived Implementations

impl Eq for Severity

impl PartialEq for Severity

fn eq(&self, __arg_0: &Severity) -> bool

fn ne(&self, __arg_0: &Severity) -> bool

impl Debug for Severity

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Copy for Severity

impl Clone for Severity

fn clone(&self) -> Severity

fn clone_from(&mut self, source: &Self)