mirror of
https://github.com/photonstorm/phaser
synced 2025-01-13 05:38:48 +00:00
13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
module.exports = [
|
|
'#define SHADER_NAME PHASER_BITMAP_MASK_VS',
|
|
'',
|
|
'precision mediump float;',
|
|
'',
|
|
'attribute vec2 inPosition;',
|
|
'',
|
|
'void main()',
|
|
'{',
|
|
' gl_Position = vec4(inPosition, 0.0, 1.0);',
|
|
'}',
|
|
''
|
|
].join('\n');
|