зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
526 B
GLSL
19 строки
526 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/. */
|
|
|
|
in vec4 aColor;
|
|
in vec4 aColorTexCoord;
|
|
|
|
varying vec2 vColorTexCoord;
|
|
varying vec4 vColor;
|
|
|
|
void main(void)
|
|
{
|
|
vColor = aColor;
|
|
vColorTexCoord = aColorTexCoord.xy;
|
|
vec4 pos = vec4(aPosition, 1.0);
|
|
pos.xy = floor(pos.xy * uDevicePixelRatio + 0.5) / uDevicePixelRatio;
|
|
gl_Position = uTransform * pos;
|
|
}
|