ProjectArcade

Форк
0
34 строки · 1.0 Кб
1
/*
2
   Hyllian's 5xBR v3.5a Shader
3
   
4
   Copyright (C) 2011 Hyllian/Jararaca - sergiogdb@gmail.com
5
  
6
   This program is free software; you can redistribute it and/or
7
   modify it under the terms of the GNU General Public License
8
   as published by the Free Software Foundation; either version 2
9
   of the License, or (at your option) any later version.
10

11
   This program is distributed in the hope that it will be useful,
12
   but WITHOUT ANY WARRANTY; without even the implied warranty of
13
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
   GNU General Public License for more details.
15

16
   You should have received a copy of the GNU General Public License
17
   along with this program; if not, write to the Free Software
18
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
   
20
*/
21

22
#ifdef GL_ES
23
precision mediump float;
24
precision mediump int;
25
#endif
26

27
attribute vec4 a_position;
28
attribute vec2 a_texcoord0;
29
varying vec2 v_texcoord0;
30

31
void main() {
32
	v_texcoord0 = a_texcoord0;
33
	gl_Position = a_position;
34
}

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.