pathfinder/shaders/gles2/ecaa-line.vs.glsl

96 lines
3.6 KiB
Plaintext
Raw Normal View History

// pathfinder/shaders/gles2/ecaa-line.vs.glsl
//
2017-10-03 18:32:03 -04:00
// Copyright (c) 2017 The Pathfinder Project Developers.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//! Implements *edge coverage antialiasing* (ECAA) for straight-line path
//! segments.
//!
//! This shader expects to render to the red channel of a floating point color
//! buffer. Half precision floating point should be sufficient.
//!
//! Use this shader only when *both* of the following are true:
//!
//! 1. You are only rendering monochrome paths such as text. (Otherwise,
//! consider MCAA.)
//!
//! 2. The paths are relatively small, so overdraw is not a concern.
//! (Otherwise, consider MCAA.)
precision highp float;
2018-01-04 20:32:20 -05:00
/// A 3D transform to be applied to the object.
uniform mat4 uTransform;
2018-01-04 20:32:20 -05:00
/// Vertical snapping positions.
uniform vec4 uHints;
2018-01-04 20:32:20 -05:00
/// The framebuffer size in pixels.
uniform ivec2 uFramebufferSize;
2018-01-04 20:32:20 -05:00
/// The size of the path bounds texture in texels.
uniform ivec2 uPathBoundsDimensions;
2018-01-04 20:32:20 -05:00
/// The path bounds texture, one rect per path ID.
uniform sampler2D uPathBounds;
2018-01-04 20:32:20 -05:00
/// The size of the path transform buffer texture in texels.
uniform ivec2 uPathTransformSTDimensions;
2018-01-04 20:32:20 -05:00
/// The path transform buffer texture, one path dilation per texel.
uniform sampler2D uPathTransformST;
2018-01-04 20:32:20 -05:00
/// The size of the extra path transform factors buffer texture in texels.
uniform ivec2 uPathTransformExtDimensions;
2018-01-04 20:32:20 -05:00
/// The extra path transform factors buffer texture, packed two path transforms per texel.
uniform sampler2D uPathTransformExt;
2018-01-04 20:32:20 -05:00
/// The amount of faux-bold to apply, in local path units.
uniform vec2 uEmboldenAmount;
attribute vec2 aQuadPosition;
attribute vec2 aLeftPosition;
attribute vec2 aRightPosition;
attribute float aPathID;
attribute float aLeftNormalAngle;
attribute float aRightNormalAngle;
varying vec4 vEndpoints;
varying float vWinding;
void main() {
vec2 leftPosition = aLeftPosition;
vec2 rightPosition = aRightPosition;
int pathID = int(aPathID);
vec2 leftRightNormalAngles = vec2(aLeftNormalAngle, aRightNormalAngle);
2017-08-22 21:25:32 -04:00
vec2 pathTransformExt;
vec4 pathTransformST = fetchPathAffineTransform(pathTransformExt,
uPathTransformST,
uPathTransformSTDimensions,
uPathTransformExt,
uPathTransformExtDimensions,
pathID);
vec4 bounds = fetchFloat4Data(uPathBounds, pathID, uPathBoundsDimensions);
2017-08-22 21:25:32 -04:00
// Transform the points, and compute the position of this vertex.
vec2 position;
float winding;
computeECAAQuadPosition(position,
winding,
leftPosition,
rightPosition,
aQuadPosition,
uFramebufferSize,
pathTransformST,
pathTransformExt,
uTransform,
uHints,
bounds,
leftRightNormalAngles,
uEmboldenAmount);
float depth = convertPathIndexToViewportDepthValue(pathID);
gl_Position = vec4(position, depth, 1.0);
vEndpoints = vec4(leftPosition, rightPosition);
vWinding = winding;
}