mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Implement gl.getParameter(gl.ALIASED_LINE_WIDTH_RANGE)
This commit is contained in:
parent
be4ac6c4cd
commit
36c0e387dd
10 changed files with 31 additions and 24 deletions
|
@ -275,6 +275,7 @@ pub enum WebGLCommand {
|
|||
DeleteVertexArray(WebGLVertexArrayId),
|
||||
BindVertexArray(Option<WebGLVertexArrayId>),
|
||||
AliasedPointSizeRange(WebGLSender<(f32, f32)>),
|
||||
AliasedLineWidthRange(WebGLSender<(f32, f32)>),
|
||||
}
|
||||
|
||||
macro_rules! define_resource_id_struct {
|
||||
|
@ -548,6 +549,7 @@ impl fmt::Debug for WebGLCommand {
|
|||
DeleteVertexArray(..) => "DeleteVertexArray",
|
||||
BindVertexArray(..) => "BindVertexArray",
|
||||
AliasedPointSizeRange(..) => "AliasedPointSizeRange",
|
||||
AliasedLineWidthRange(..) => "AliasedLineWidthRange",
|
||||
};
|
||||
|
||||
write!(f, "CanvasWebGLMsg::{}(..)", name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue