// Copyright 2017 The Servo Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use euclid::{Point2D, Rect, Size2D}; use gl::types::{GLsizeiptr, GLuint}; use gl; use otf::glyf::GlyfTable; use otf::head::HeadTable; use otf::loca::LocaTable; use std::mem; use std::os::raw::c_void; static DUMMY_VERTEX: Vertex = Vertex { x: 0, y: 0, glyph_index: 0, }; pub struct GlyphBufferBuilder { pub vertices: Vec, pub indices: Vec, pub descriptors: Vec, } impl GlyphBufferBuilder { #[inline] pub fn new() -> GlyphBufferBuilder { GlyphBufferBuilder { vertices: vec![DUMMY_VERTEX], indices: vec![], descriptors: vec![], } } pub fn add_glyph(&mut self, glyph_id: u32, head_table: &HeadTable, loca_table: &LocaTable, glyf_table: &GlyfTable) -> Result<(), ()> { let glyph_index = self.descriptors.len() as u16; let mut point_index = self.vertices.len() as u32; let start_index = self.indices.len() as u32; let start_point = point_index; let mut last_point_on_curve = true; try!(glyf_table.for_each_point(loca_table, glyph_id, |point| { self.vertices.push(Vertex { x: point.position.x, y: point.position.y, glyph_index: glyph_index, }); if !point.first_point_in_contour && point.on_curve { let indices = if last_point_on_curve { [point_index - 2, 0, point_index - 1] } else { [point_index - 3, point_index - 2, point_index - 1] }; self.indices.extend(indices.iter().cloned()); } point_index += 1; last_point_on_curve = point.on_curve })); // Add a glyph descriptor. let bounding_rect = try!(glyf_table.bounding_rect(loca_table, glyph_id)); self.descriptors.push(GlyphDescriptor { left: bounding_rect.origin.x as i32, bottom: bounding_rect.origin.y as i32, right: bounding_rect.max_x() as i32, top: bounding_rect.max_y() as i32, units_per_em: head_table.units_per_em as u32, start_point: start_point as u32, start_index: start_index, pad: 0, }); Ok(()) } pub fn finish(&self) -> Result { // TODO(pcwalton): Try using `glMapBuffer` here. Requires precomputing contour types and // counts. unsafe { let (mut vertices, mut indices, mut descriptors) = (0, 0, 0); gl::GenBuffers(1, &mut vertices); gl::GenBuffers(1, &mut indices); gl::GenBuffers(1, &mut descriptors); gl::BindBuffer(gl::ARRAY_BUFFER, vertices); gl::BufferData(gl::ARRAY_BUFFER, (self.vertices.len() * mem::size_of::()) as GLsizeiptr, self.vertices.as_ptr() as *const Vertex as *const c_void, gl::STATIC_DRAW); gl::BindBuffer(gl::ELEMENT_ARRAY_BUFFER, indices); gl::BufferData(gl::ELEMENT_ARRAY_BUFFER, (self.indices.len() * mem::size_of::()) as GLsizeiptr, self.indices.as_ptr() as *const u32 as *const c_void, gl::STATIC_DRAW); let length = self.descriptors.len() * mem::size_of::(); gl::BindBuffer(gl::UNIFORM_BUFFER, descriptors); gl::BufferData(gl::UNIFORM_BUFFER, length as GLsizeiptr, self.descriptors.as_ptr() as *const GlyphDescriptor as *const c_void, gl::STATIC_DRAW); Ok(GlyphBuffers { vertices: vertices, indices: indices, descriptors: descriptors, }) } } } pub struct GlyphBuffers { pub vertices: GLuint, pub indices: GLuint, pub descriptors: GLuint, } #[repr(C)] #[derive(Clone, Copy)] pub struct GlyphDescriptor { pub left: i32, pub bottom: i32, pub right: i32, pub top: i32, pub units_per_em: u32, pub start_point: u32, pub start_index: u32, pub pad: u32, } impl GlyphDescriptor { #[inline] pub fn pixel_rect(&self, point_size: f32) -> Rect { let pixels_per_unit = point_size / self.units_per_em as f32; Rect::new(Point2D::new(self.left as f32, self.bottom as f32), Size2D::new((self.right - self.left) as f32, (self.top - self.bottom) as f32)) * pixels_per_unit } } #[derive(Copy, Clone)] #[repr(C)] pub struct Vertex { x: i16, y: i16, /// TODO(pcwalton): Try omitting this and binary search the glyph descriptors in the vertex /// shader. Might or might not help. glyph_index: u16, }