molstar
Version:
A comprehensive macromolecular library.
16 lines (13 loc) • 339 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.copy_frag = void 0;
exports.copy_frag = `
precision highp float;
precision highp sampler2D;
uniform sampler2D tColor;
uniform vec2 uTexSize;
void main() {
vec2 coords = gl_FragCoord.xy / uTexSize;
gl_FragColor = texture2D(tColor, coords);
}
`;
;