Files
Foundry-VTT-Docker/resources/app/node_modules/@pixi/mesh/lib/shader/mesh.vert.js
2025-01-04 00:34:03 +01:00

21 lines
536 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: !0 });
var vertex = `attribute vec2 aVertexPosition;
attribute vec2 aTextureCoord;
uniform mat3 projectionMatrix;
uniform mat3 translationMatrix;
uniform mat3 uTextureMatrix;
varying vec2 vTextureCoord;
void main(void)
{
gl_Position = vec4((projectionMatrix * translationMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);
vTextureCoord = (uTextureMatrix * vec3(aTextureCoord, 1.0)).xy;
}
`;
exports.default = vertex;
//# sourceMappingURL=mesh.vert.js.map