mirror of
https://github.com/servo/servo.git
synced 2025-08-02 20:20:14 +01:00
Auto merge of #6357 - ecoal95:more-webgl, r=pcwalton
See the commit descriptions for more details. Blocked on https://github.com/servo/gleam/pull/24 <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6357) <!-- Reviewable:end -->
This commit is contained in:
commit
ceaca2e288
16 changed files with 679 additions and 353 deletions
|
@ -77,6 +77,12 @@ pub enum Canvas2dMsg {
|
|||
#[derive(Clone)]
|
||||
pub enum CanvasWebGLMsg {
|
||||
GetContextAttributes(Sender<GLContextAttributes>),
|
||||
ActiveTexture(u32),
|
||||
BlendColor(f32, f32, f32, f32),
|
||||
BlendEquation(u32),
|
||||
BlendEquationSeparate(u32, u32),
|
||||
BlendFunc(u32, u32),
|
||||
BlendFuncSeparate(u32, u32, u32, u32),
|
||||
AttachShader(u32, u32),
|
||||
BufferData(u32, Vec<f32>, u32),
|
||||
Clear(u32),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue