Realistic 3D camera system
3D camera system components
|
asio::buffer_size | The asio::buffer_size function determines the total number of bytes in a buffer or buffer sequence |
asio::buffer_cast | The asio::buffer_cast function is used to obtain a pointer to the underlying memory region associated with a buffer |
asio::buffer | The asio::buffer function is used to create a buffer object to represent raw memory, an array of POD elements, a vector of POD elements, or a std::string |
asio::buffer_copy | The asio::buffer_copy function is used to copy bytes from a source buffer (or buffer sequence) to a target buffer (or buffer sequence) |
Completion Condition Function Objects | |
asio::connect | Establishes a socket connection by trying each endpoint in a sequence |
asio::async_connect | Asynchronously establishes a socket connection by trying each endpoint in a sequence |
asio::asio_handler_invoke | Default invoke function for handlers |
asio::read | Attempt to read a certain amount of data from a stream before returning |
asio::async_read | Start an asynchronous operation to read a certain amount of data from a stream |
asio::read_at | Attempt to read a certain amount of data at the specified offset before returning |
asio::async_read_at | Start an asynchronous operation to read a certain amount of data at the specified offset |
asio::read_until | Read data into a streambuf until it contains a delimiter, matches a regular expression, or a function object indicates a match |
asio::async_read_until | Start an asynchronous operation to read data into a streambuf until it contains a delimiter, matches a regular expression, or a function object indicates a match |
asio::spawn | Start a new stackful coroutine |
asio::write | Write a certain amount of data to a stream before returning |
asio::async_write | Start an asynchronous operation to write a certain amount of data to a stream |
asio::write_at | Write a certain amount of data at a specified offset before returning |
asio::async_write_at | Start an asynchronous operation to write a certain amount of data at the specified offset |