generated from sigonasr2/JavaProjectTemplate
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
369 B
16 lines
369 B
//Copyright 2010 JogAmp Community. All rights reserved.
|
|
|
|
//
|
|
// 2-pass shader w/o weight
|
|
//
|
|
|
|
#if __VERSION__ >= 130
|
|
#define varying in
|
|
out vec4 mgl_FragColor;
|
|
#define texture2D texture
|
|
#else
|
|
#define mgl_FragColor gl_FragColor
|
|
#endif
|
|
|
|
#define GetSample(texUnit, texCoord, psize, cx, cy, offX, offY) texture2D(texUnit, texCoord + psize * vec2(cx+offX, cy+offY))
|
|
|
|
|