tornavis/source/blender/draw/intern/draw_pointcloud_private.hh

21 lines
542 B
C++

/* SPDX-FileCopyrightText: 2021 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup draw
*/
#pragma once
struct PointCloud;
struct GPUBatch;
struct GPUVertBuf;
struct GPUMaterial;
GPUVertBuf *pointcloud_position_and_radius_get(PointCloud *pointcloud);
GPUBatch **pointcloud_surface_shaded_get(PointCloud *pointcloud,
GPUMaterial **gpu_materials,
int mat_len);
GPUBatch *pointcloud_surface_get(PointCloud *pointcloud);