2022-03-18 20:57:15 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
* Copyright 2022 Blender Foundation. All rights reserved. */
|
2022-02-08 23:17:31 +01:00
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
|
* \ingroup gpu
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
|
|
#include "gpu_storage_buffer_private.hh"
|
|
|
|
|
|
|
|
|
|
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;
|
2022-03-16 08:42:12 +01:00
|
|
|
void clear(eGPUTextureFormat internal_format, eGPUDataFormat data_format, void *data) override;
|
2022-05-18 21:49:08 +02:00
|
|
|
void copy_sub(VertBuf *src, uint dst_offset, uint src_offset, uint copy_size) override;
|
2022-08-30 21:52:09 +02:00
|
|
|
void read(void *data) override;
|
2022-02-08 23:17:31 +01:00
|
|
|
|
2022-03-16 08:58:59 +01:00
|
|
|
/* Special internal function to bind SSBOs to indirect argument targets. */
|
|
|
|
|
void bind_as(GLenum target);
|
|
|
|
|
|
2022-02-08 23:17:31 +01:00
|
|
|
private:
|
|
|
|
|
void init();
|
|
|
|
|
|
|
|
|
|
MEM_CXX_CLASS_ALLOC_FUNCS("GLStorageBuf");
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace gpu
|
|
|
|
|
} // namespace blender
|