With libepoxy we can choose between EGL and GLX at runtime, as well as dynamically open EGL and GLX libraries without linking to them. This will make it possible to build with Wayland, EGL, GLVND support while still running on systems that only have X11, GLX and libGL. It also paves the way for headless rendering through EGL. libepoxy is a new library dependency, and is included in the precompiled libraries. GLEW is no longer a dependency, and WITH_SYSTEM_GLEW was removed. Includes contributions by Brecht Van Lommel, Ray Molenkamp, Campbell Barton and Sergey Sharybin. Ref T76428 Differential Revision: https://developer.blender.org/D15291
50 lines
1.1 KiB
C++
50 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"
|
|
|
|
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;
|
|
void copy_sub(VertBuf *src, uint dst_offset, uint src_offset, uint copy_size) 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
|