1 2 3 4 5 6 7 8 9
// surfman/surfman/src/platform/windows/mod.rs // //! Windows support, either via the native WGL interface or Google's ANGLE library. #[cfg(feature = "sm-angle")] pub mod angle; #[cfg(not(feature = "sm-no-wgl"))] pub mod wgl;
1 2 3 4 5 6 7 8 9
// surfman/surfman/src/platform/windows/mod.rs // //! Windows support, either via the native WGL interface or Google's ANGLE library. #[cfg(feature = "sm-angle")] pub mod angle; #[cfg(not(feature = "sm-no-wgl"))] pub mod wgl;