Added texture compression test.

This commit is contained in:
bkaradzic
2013-09-09 23:17:17 -07:00
parent c8fce8d93f
commit f84081b0ad
16 changed files with 142 additions and 18 deletions

View File

@@ -0,0 +1,15 @@
$input v_texcoord0
/*
* Copyright 2011-2013 Branimir Karadzic. All rights reserved.
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#include "../common/common.sh"
SAMPLER2D(u_texColor, 0);
void main()
{
gl_FragColor = texture2D(u_texColor, v_texcoord0.xy*0.5+0.5);
}