Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/gpu/opengl')
-rw-r--r--source/blender/gpu/opengl/gl_storage_buffer.cc25
-rw-r--r--source/blender/gpu/opengl/gl_storage_buffer.hh1
2 files changed, 26 insertions, 0 deletions
diff --git a/source/blender/gpu/opengl/gl_storage_buffer.cc b/source/blender/gpu/opengl/gl_storage_buffer.cc
index 12f942439ca..9cdde0b5734 100644
--- a/source/blender/gpu/opengl/gl_storage_buffer.cc
+++ b/source/blender/gpu/opengl/gl_storage_buffer.cc
@@ -112,6 +112,31 @@ void GLStorageBuf::unbind()
slot_ = 0;
}
+void GLStorageBuf::clear(eGPUTextureFormat internal_format, eGPUDataFormat data_format, void *data)
+{
+ if (ssbo_id_ == 0) {
+ this->init();
+ }
+
+ if (GLContext::direct_state_access_support) {
+ glClearNamedBufferData(ssbo_id_,
+ to_gl_internal_format(internal_format),
+ to_gl_data_format(internal_format),
+ to_gl(data_format),
+ data);
+ }
+ else {
+ /* WATCH(@fclem): This should be ok since we only use clear outside of drawing functions. */
+ glBindBuffer(GL_SHADER_STORAGE_BUFFER, ssbo_id_);
+ glClearBufferData(GL_SHADER_STORAGE_BUFFER,
+ to_gl_internal_format(internal_format),
+ to_gl_data_format(internal_format),
+ to_gl(data_format),
+ data);
+ glBindBuffer(GL_SHADER_STORAGE_BUFFER, 0);
+ }
+}
+
/** \} */
} // namespace blender::gpu
diff --git a/source/blender/gpu/opengl/gl_storage_buffer.hh b/source/blender/gpu/opengl/gl_storage_buffer.hh
index 106d2158273..d657a4de09c 100644
--- a/source/blender/gpu/opengl/gl_storage_buffer.hh
+++ b/source/blender/gpu/opengl/gl_storage_buffer.hh
@@ -35,6 +35,7 @@ class GLStorageBuf : public StorageBuf {
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;
private:
void init();