133 lines
4.2 KiB
C
133 lines
4.2 KiB
C
![]() |
/*
|
||
|
* Copyright (C) 2015 The Android Open Source Project
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*/
|
||
|
|
||
|
//! \file
|
||
|
|
||
|
#ifndef TNT_FILAMENT_DRIVER_BUFFERDESCRIPTOR_H
|
||
|
#define TNT_FILAMENT_DRIVER_BUFFERDESCRIPTOR_H
|
||
|
|
||
|
#include <utils/compiler.h>
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
namespace filament {
|
||
|
namespace backend {
|
||
|
|
||
|
/**
|
||
|
* A CPU memory-buffer descriptor, typically used to transfer data from the CPU to the GPU.
|
||
|
*
|
||
|
* A BufferDescriptor owns the memory buffer it references, therefore BufferDescriptor cannot
|
||
|
* be copied, but can be moved.
|
||
|
*
|
||
|
* BufferDescriptor releases ownership of the memory-buffer when it's destroyed.
|
||
|
*/
|
||
|
class UTILS_PUBLIC BufferDescriptor {
|
||
|
public:
|
||
|
/**
|
||
|
* Callback used to destroy the buffer data.
|
||
|
* Guarantees:
|
||
|
* Called on the main filament thread.
|
||
|
*
|
||
|
* Limitations:
|
||
|
* Must be lightweight.
|
||
|
* Must not call filament APIs.
|
||
|
*/
|
||
|
using Callback = void(*)(void* buffer, size_t size, void* user);
|
||
|
|
||
|
//! creates an empty descriptor
|
||
|
BufferDescriptor() noexcept = default;
|
||
|
|
||
|
//! calls the callback to advertise BufferDescriptor no-longer owns the buffer
|
||
|
~BufferDescriptor() noexcept {
|
||
|
if (callback) {
|
||
|
callback(buffer, size, user);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
BufferDescriptor(const BufferDescriptor& rhs) = delete;
|
||
|
BufferDescriptor& operator=(const BufferDescriptor& rhs) = delete;
|
||
|
|
||
|
BufferDescriptor(BufferDescriptor&& rhs) noexcept
|
||
|
: buffer(rhs.buffer), size(rhs.size), callback(rhs.callback), user(rhs.user) {
|
||
|
rhs.buffer = nullptr;
|
||
|
rhs.callback = nullptr;
|
||
|
}
|
||
|
|
||
|
BufferDescriptor& operator=(BufferDescriptor&& rhs) noexcept {
|
||
|
if (this != &rhs) {
|
||
|
buffer = rhs.buffer;
|
||
|
size = rhs.size;
|
||
|
callback = rhs.callback;
|
||
|
user = rhs.user;
|
||
|
rhs.buffer = nullptr;
|
||
|
rhs.callback = nullptr;
|
||
|
}
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Creates a BufferDescriptor that references a CPU memory-buffer
|
||
|
* @param buffer Memory address of the CPU buffer to reference
|
||
|
* @param size Size of the CPU buffer in bytes
|
||
|
* @param callback A callback used to release the CPU buffer from this BufferDescriptor
|
||
|
* @param user An opaque user pointer passed to the callback function when it's called
|
||
|
*/
|
||
|
BufferDescriptor(void const* buffer, size_t size,
|
||
|
Callback callback = nullptr, void* user = nullptr) noexcept
|
||
|
: buffer(const_cast<void*>(buffer)), size(size), callback(callback), user(user) {
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set or replace the release callback function
|
||
|
* @param callback The new callback function
|
||
|
* @param user An opaque user pointer passed to the callbeck function when it's called
|
||
|
*/
|
||
|
void setCallback(Callback callback, void* user = nullptr) noexcept {
|
||
|
this->callback = callback;
|
||
|
this->user = user;
|
||
|
}
|
||
|
|
||
|
//! Returns whether a release callback is set
|
||
|
bool hasCallback() const noexcept { return callback != nullptr; }
|
||
|
|
||
|
//! Returns the currently set release callback function
|
||
|
Callback getCallback() const noexcept {
|
||
|
return callback;
|
||
|
}
|
||
|
|
||
|
//! Returns the user opaque pointer associated to this BufferDescriptor
|
||
|
void* getUser() const noexcept {
|
||
|
return user;
|
||
|
}
|
||
|
|
||
|
//! CPU mempry-buffer virtual address
|
||
|
void* buffer = nullptr;
|
||
|
|
||
|
//! CPU memory-buffer size in bytes
|
||
|
size_t size = 0;
|
||
|
|
||
|
private:
|
||
|
// callback when the buffer is consumed.
|
||
|
Callback callback = nullptr;
|
||
|
void* user = nullptr;
|
||
|
};
|
||
|
|
||
|
} // namespace backend
|
||
|
} // namespace filament
|
||
|
|
||
|
#endif // TNT_FILAMENT_DRIVER_BUFFERDESCRIPTOR_H
|