gecko-dev/gfx/webrender/res/gpu_cache_update.glsl
Kartikaya Gupta 0e9ffe73d2 Bug 1424280 - Update webrender to commit f9bc4a5c263e707e3498bea47d3ec9096cc3d099. r=jrmuizel
This includes the re-generated FFI header.

MozReview-Commit-ID: 6fvUNwu8ueT
2017-12-10 13:48:41 -05:00

28 lines
555 B
GLSL

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include base
varying vec4 vData;
#ifdef WR_VERTEX_SHADER
in vec4 aValue;
in vec2 aPosition;
void main() {
vData = aValue;
gl_Position = vec4(aPosition * 2.0 - 1.0, 0.0, 1.0);
gl_PointSize = 1.0;
}
#endif //WR_VERTEX_SHADER
#ifdef WR_FRAGMENT_SHADER
out vec4 oValue;
void main() {
oValue = vData;
}
#endif //WR_FRAGMENT_SHADER