blob: 72310b283eeeee2f75c0342c63bd4d33eccb7f05 [file]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
layout(local_size_x = 32) in;
layout(std430) buffer;
layout(binding = 1) writeonly buffer OutputData {
uint data[];
}
output_data;
void main() {
uint ident = gl_GlobalInvocationID.x;
output_data.data[ident] = ident;
}