mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
Replace use of gleam in webgl with sparkle.
This commit is contained in:
parent
ec1da1d01c
commit
1cefae7181
16 changed files with 103 additions and 72 deletions
|
@ -52,7 +52,6 @@ encoding_rs = "0.8"
|
|||
enum-iterator = "0.2.0"
|
||||
euclid = "0.20"
|
||||
fnv = "1.0"
|
||||
gleam = "0.6"
|
||||
headers = "0.2"
|
||||
html5ever = "0.23"
|
||||
http = "0.1"
|
||||
|
@ -100,6 +99,7 @@ servo_geometry = {path = "../geometry" }
|
|||
servo-media = {git = "https://github.com/servo/media"}
|
||||
servo_rand = {path = "../rand"}
|
||||
servo_url = {path = "../url"}
|
||||
sparkle = "0.1"
|
||||
smallvec = { version = "0.6", features = ["std", "union"] }
|
||||
style = {path = "../style", features = ["servo"]}
|
||||
style_traits = {path = "../style_traits"}
|
||||
|
|
|
@ -20,9 +20,9 @@ use crate::dom::webglrenderingcontext::WebGLRenderingContext;
|
|||
use crate::dom::webgltexture::TexCompression;
|
||||
use canvas_traits::webgl::{GlType, WebGLVersion};
|
||||
use fnv::{FnvHashMap, FnvHashSet};
|
||||
use gleam::gl::{self, GLenum};
|
||||
use js::jsapi::JSObject;
|
||||
use malloc_size_of::MallocSizeOf;
|
||||
use sparkle::gl::{self, GLenum};
|
||||
use std::collections::HashMap;
|
||||
use std::iter::FromIterator;
|
||||
use std::ptr::NonNull;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue