This uses a StorageBuf as the source of indirect dispatch argument. The user needs to make sure the parameters are in the right order. There is no support for argument offset for the moment as there is no need for it. But this might be added in the future. Note that the indirect buffer is synchronized at the backend level. This is done for practical reasons and because this feature is almost always used for GPU driven pipeline.
51 lines
1.1 KiB
C++
51 lines
1.1 KiB
C++
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright 2022 Blender Foundation. All rights reserved. */
|
|
|
|
/** \file
|
|
* \ingroup gpu
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
#include "gpu_storage_buffer_private.hh"
|
|
|
|
#include "glew-mx.h"
|
|
|
|
namespace blender {
|
|
namespace gpu {
|
|
|
|
/**
|
|
* Implementation of Storage Buffers using OpenGL.
|
|
*/
|
|
class GLStorageBuf : public StorageBuf {
|
|
private:
|
|
/** Slot to which this UBO is currently bound. -1 if not bound. */
|
|
int slot_ = -1;
|
|
/** OpenGL Object handle. */
|
|
GLuint ssbo_id_ = 0;
|
|
/** Usage type. */
|
|
GPUUsageType usage_;
|
|
|
|
public:
|
|
GLStorageBuf(size_t size, GPUUsageType usage, const char *name);
|
|
~GLStorageBuf();
|
|
|
|
void update(const void *data) override;
|
|
void bind(int slot) override;
|
|
void unbind() override;
|
|
void clear(eGPUTextureFormat internal_format, eGPUDataFormat data_format, void *data) override;
|
|
|
|
/* Special internal function to bind SSBOs to indirect argument targets. */
|
|
void bind_as(GLenum target);
|
|
|
|
private:
|
|
void init();
|
|
|
|
MEM_CXX_CLASS_ALLOC_FUNCS("GLStorageBuf");
|
|
};
|
|
|
|
} // namespace gpu
|
|
} // namespace blender
|