bgfx/examples/37-gpudrivenrendering/fs_gdr_render_occlusion.sc
Branimir Karadžić fa7a871ca7 Cleanup.
2018-03-04 22:11:38 -08:00

13 lines
304 B
Scala

/*
* Copyright 2018 Kostas Anagnostou. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
*/
#include "../common/common.sh"
//dummy shader for occlusion buffer pass until bgfx supports rendering with null shader
void main()
{
gl_FragColor = vec4(0, 0, 0, 0);
}