Lines Matching defs:data
19 * @brief Functions and data declarations.
56 /** @brief The binary data payload. */
57 uint8_t* data;
59 /** @brief The binary data length in bytes. */
154 * @param img The source data for the image.
219 * @param img The image to populate with loaded data.
244 * @param img The image to populate with loaded data.
268 * @brief Create an image from a 2D float data array.
270 * @param data The raw input data.
278 const float* data,
284 * @brief Create an image from a 2D byte data array.
286 * @param data The raw input data.
294 const uint8_t* data,
300 * @brief Create a flattened RGBA FLOAT32 data array for a single slice from an image structure.
302 * The returned data array is allocated with @c new[] and must be freed with a @c delete[] call.
305 * @param y_flip Should the data in the array be Y flipped?
308 * @return The data array.
316 * @brief Create a flattened RGBA UNORM8 data array from an image structure.
318 * The returned data array is allocated with @c new[] and must be freed with a @c delete[] call.
321 * @param y_flip Should the data in the array be Y flipped?
323 * @return The data array.