-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from simartin/servo_issue_9097
New GLLimits struct to access GL "limit values".
- Loading branch information
Showing
4 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
use gleam::gl::types::GLint; | ||
use gleam::gl; | ||
|
||
#[derive(Clone, Deserialize, Serialize)] | ||
pub struct GLLimits { | ||
pub max_vertex_attribs: GLint, | ||
} | ||
|
||
impl GLLimits { | ||
pub fn detect() -> GLLimits { | ||
GLLimits { | ||
max_vertex_attribs: gl::get_integer_v(gl::MAX_VERTEX_ATTRIBS), | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters