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