Files
test2/source/blender/gpu/opengl/gl_uniform_buffer.hh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
875 B
C++
Raw Normal View History

/* SPDX-FileCopyrightText: 2020 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup gpu
*/
#pragma once
#include "MEM_guardedalloc.h"
#include "gpu_uniform_buffer_private.hh"
namespace blender {
namespace gpu {
/**
* Implementation of Uniform Buffers using OpenGL.
*/
class GLUniformBuf : public UniformBuf {
private:
/** Slot to which this UBO is currently bound. -1 if not bound. */
int slot_ = -1;
/** OpenGL Object handle. */
GLuint ubo_id_ = 0;
public:
GLUniformBuf(size_t size, const char *name);
~GLUniformBuf();
void update(const void *data) override;
void clear_to_zero() override;
void bind(int slot) override;
void bind_as_ssbo(int slot) override;
void unbind() override;
private:
void init();
MEM_CXX_CLASS_ALLOC_FUNCS("GLUniformBuf");
};
} // namespace gpu
} // namespace blender