servo: Merge #8831 - Issue #6791: Allow more array types in bufferData and bufferSubData (from simartin:ticket_6791); r=eefriedman

Fix https://github.com/servo/servo/issues/6791

Source-Repo: https://github.com/servo/servo
Source-Revision: 95e6b1d101ca1a1019b8fea1a13a5ef37430901f
This commit is contained in:
Simon Martin
2015-12-07 02:09:32 +05:00
parent 4bace2a177
commit 925dedbbf5
2 changed files with 5 additions and 9 deletions

View File

@@ -134,8 +134,8 @@ pub enum CanvasWebGLMsg {
BlendFunc(u32, u32), BlendFunc(u32, u32),
BlendFuncSeparate(u32, u32, u32, u32), BlendFuncSeparate(u32, u32, u32, u32),
AttachShader(u32, u32), AttachShader(u32, u32),
BufferData(u32, Vec<f32>, u32), BufferData(u32, Vec<u8>, u32),
BufferSubData(u32, isize, Vec<f32>), BufferSubData(u32, isize, Vec<u8>),
Clear(u32), Clear(u32),
ClearColor(f32, f32, f32, f32), ClearColor(f32, f32, f32, f32),
ClearDepth(f64), ClearDepth(f64),

View File

@@ -37,7 +37,7 @@ use net_traits::image_cache_task::ImageResponse;
use offscreen_gl_context::GLContextAttributes; use offscreen_gl_context::GLContextAttributes;
use std::cell::Cell; use std::cell::Cell;
use std::sync::mpsc::channel; use std::sync::mpsc::channel;
use std::{mem, ptr, slice}; use std::{ptr, slice};
use util::str::DOMString; use util::str::DOMString;
use util::vec::byte_swap; use util::vec::byte_swap;
@@ -400,9 +400,7 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext {
if buffer_data.is_null() { if buffer_data.is_null() {
return self.webgl_error(InvalidValue) // https://github.com/servo/servo/issues/5014 return self.webgl_error(InvalidValue) // https://github.com/servo/servo/issues/5014
} }
let data_f32 = JS_GetFloat32ArrayData(buffer_data, ptr::null()); slice::from_raw_parts(ptr, length as usize).to_vec()
let data_vec_length = length / mem::size_of::<f32>() as u32;
slice::from_raw_parts(data_f32, data_vec_length as usize).to_vec()
}; };
self.ipc_renderer self.ipc_renderer
.send(CanvasMsg::WebGL(CanvasWebGLMsg::BufferData(target, data_vec, usage))) .send(CanvasMsg::WebGL(CanvasWebGLMsg::BufferData(target, data_vec, usage)))
@@ -431,9 +429,7 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext {
if buffer_data.is_null() { if buffer_data.is_null() {
return self.webgl_error(InvalidValue) // https://github.com/servo/servo/issues/5014 return self.webgl_error(InvalidValue) // https://github.com/servo/servo/issues/5014
} }
let data_f32 = JS_GetFloat32ArrayData(buffer_data, ptr::null()); slice::from_raw_parts(ptr, length as usize).to_vec()
let data_vec_length = length / mem::size_of::<f32>() as u32;
slice::from_raw_parts(data_f32, data_vec_length as usize).to_vec()
}; };
// FIXME(simartin) Check that the defined region is inside the allocated one // FIXME(simartin) Check that the defined region is inside the allocated one
// https://github.com/servo/servo/issues/8738 // https://github.com/servo/servo/issues/8738