Remove UBOBuffer empty files

This commit is contained in:
2025-02-17 00:33:40 -05:00
parent 288f345fe7
commit 953c0d8973
2 changed files with 0 additions and 36 deletions

View File

@@ -1,12 +0,0 @@
//
// Created by kj16609 on 10/12/24.
//
#include "UBOBuffer.hpp"
namespace fgl::engine
{
UBOBuffer::UBOBuffer( std::size_t reserve_size, std::size_t TSize )
{}
} // namespace fgl::engine

View File

@@ -1,24 +0,0 @@
//
// Created by kj16609 on 10/12/24.
//
#include <cstdint>
#include "engine/descriptors/Descriptor.hpp"
namespace fgl::engine
{
class UBOBuffer
{
// descriptors::Descriptor descriptor;
public:
UBOBuffer( std::size_t reserve_size, std::size_t TSize );
//! Updates a index with the given `data` pointer. `data + TSize` must be valid
void updateData( std::size_t idx, void* data );
};
} // namespace fgl::engine