Blender V4.3
gl_compute.hh
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2023 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
9#pragma once
10
11namespace blender::gpu {
12
13class GLCompute {
14 public:
15 static void dispatch(int group_x_len, int group_y_len, int group_z_len);
16};
17
18} // namespace blender::gpu
static void dispatch(int group_x_len, int group_y_len, int group_z_len)
Definition gl_compute.cc:15