2018-12-15 00:09:37 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2018 Attila Kocsis. All rights reserved.
|
2022-01-15 22:59:06 +03:00
|
|
|
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
|
2018-12-15 00:09:37 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "bgfx_compute.sh"
|
|
|
|
#include "uniforms.sh"
|
|
|
|
|
2024-04-18 20:07:40 +03:00
|
|
|
BUFFER_WO(s_loadCounter, uint, 0);
|
2018-12-15 00:09:37 +03:00
|
|
|
|
|
|
|
NUM_THREADS(1, 1, 1)
|
|
|
|
void main()
|
|
|
|
{
|
2019-01-19 00:29:57 +03:00
|
|
|
s_loadCounter[0] = 0;
|
2018-12-15 00:09:37 +03:00
|
|
|
}
|