mirror of https://github.com/bkaradzic/bgfx
17 lines
410 B
Python
17 lines
410 B
Python
/*
|
|
* Copyright 2014 Stanlo Slasinski. All rights reserved.
|
|
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
|
|
*/
|
|
|
|
#include "bgfx_compute.sh"
|
|
#include "uniforms.sh"
|
|
|
|
BUFFER_WO(indirectBuffer, uvec4, 0);
|
|
|
|
NUM_THREADS(1, 1, 1)
|
|
void main()
|
|
{
|
|
drawIndexedIndirect(indirectBuffer, 0, 6, u_dispatchSize * threadGroupUpdateSize, 0, 0, 0);
|
|
dispatchIndirect(indirectBuffer, 1, u_dispatchSize, 1, 1);
|
|
}
|