1 | //! The underlying OpenGL platform Api. |
---|---|
2 | |
3 | #[cfg(cgl_backend)] |
4 | pub mod cgl; |
5 | #[cfg(egl_backend)] |
6 | pub mod egl; |
7 | #[cfg(glx_backend)] |
8 | pub mod glx; |
9 | #[cfg(wgl_backend)] |
10 | pub mod wgl; |
11 |
1 | //! The underlying OpenGL platform Api. |
---|---|
2 | |
3 | #[cfg(cgl_backend)] |
4 | pub mod cgl; |
5 | #[cfg(egl_backend)] |
6 | pub mod egl; |
7 | #[cfg(glx_backend)] |
8 | pub mod glx; |
9 | #[cfg(wgl_backend)] |
10 | pub mod wgl; |
11 |