2023-08-16 00:20:26 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
2023-05-31 16:19:06 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
2021-05-26 16:49:17 +02:00
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
|
* \ingroup gpu
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
namespace blender::gpu {
|
|
|
|
|
|
|
|
|
|
class GLCompute {
|
|
|
|
|
public:
|
|
|
|
|
static void dispatch(int group_x_len, int group_y_len, int group_z_len);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace blender::gpu
|