Realistic 3D camera system
3D camera system components
|
Holds a buffer that can be modified. More...
#include <buffer.hpp>
Public Member Functions | |
mutable_buffer () | |
Construct an empty buffer. More... | |
mutable_buffer (void *data, std::size_t size) | |
Construct a buffer to represent a given memory range. More... | |
Friends | |
void * | asio::detail::buffer_cast_helper (const mutable_buffer &b) |
std::size_t | asio::detail::buffer_size_helper (const mutable_buffer &b) |
Related Functions | |
(Note that these are not member functions.) | |
mutable_buffer | operator+ (const mutable_buffer &b, std::size_t start) |
Create a new modifiable buffer that is offset from the start of another. More... | |
mutable_buffer | operator+ (std::size_t start, const mutable_buffer &b) |
Create a new modifiable buffer that is offset from the start of another. More... | |
Holds a buffer that can be modified.
The mutable_buffer class provides a safe representation of a buffer that can be modified. It does not own the underlying data, and so is cheap to copy or assign.
The contents of a buffer may be accessed using the asio::buffer_size and asio::buffer_cast functions:
The asio::buffer_cast function permits violations of type safety, so uses of it in application code should be carefully considered.
Definition at line 91 of file buffer.hpp.
|
inline |
Construct an empty buffer.
Definition at line 95 of file buffer.hpp.
|
inline |
Construct a buffer to represent a given memory range.
Definition at line 102 of file buffer.hpp.
|
friend |
|
friend |
|
related |
Create a new modifiable buffer that is offset from the start of another.
Definition at line 442 of file buffer.hpp.
|
related |
Create a new modifiable buffer that is offset from the start of another.
Definition at line 459 of file buffer.hpp.