Custom derive for glium Vertex
```rust extern crate glium;
extern crate glium_derive;
struct MyVertex { #[glium(attr = "apos") pos: [f32; 3], #[glium(attr = "auv") uv: [f32; 2], #[glium(attr = "a_color", normalize) color: u32, } ```