mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Implement gl.getParameter(gl.ALIASED_POINT_SIZE_RANGE)
This commit is contained in:
parent
2ab34d5969
commit
d6ebbd3e17
13 changed files with 230 additions and 32 deletions
|
@ -892,6 +892,9 @@ impl WebGLImpl {
|
|||
ctx.gl().delete_vertex_arrays(&[id.get()]),
|
||||
WebGLCommand::BindVertexArray(id) =>
|
||||
ctx.gl().bind_vertex_array(id.map_or(0, WebGLVertexArrayId::get)),
|
||||
WebGLCommand::AliasedPointSizeRange(sender) => {
|
||||
sender.send(ctx.gl().alias_point_size_range()).unwrap()
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: update test expectations in order to enable debug assertions
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue