| 123456789101112131415161718 |
- // Copyright (C) 2009-2020, Panagiotis Christopoulos Charitos and contributors.
- // All rights reserved.
- // Code licensed under the BSD License.
- // http://www.anki3d.org/LICENSE
- #pragma anki input const UVec2 WORKGROUP_SIZE
- #pragma anki start comp
- #if ORIENTATION == 0
- # define VERTICAL 1
- #elif ORIENTATION == 1
- # define HORIZONTAL 1
- #else
- # define BOX 1
- #endif
- #include <shaders/GaussianBlur.glsl>
- #pragma anki end
|