Type conversion functions for OpenCL buffers More...
#include <Inventor/OpenCL/algorithms/SoConversion.h>
Public Member Functions | |
SoOpenCLConversion () | |
virtual int | convertFloatToRGBA (SoBufferObject *sourceBufferObject, SoBufferObject *targetBufferObject, const size_t size, const float dataMin, const float dataMax) |
int | convertFloatToRGBA (SoOpenCLBufferObject *sourceBufferObject, SoOpenCLBufferObject *targetBufferObject, const size_t size, const float dataMin, const float dataMax) |
virtual int | convert (SoBufferObject *sourceBufferObject, const SbDataType src_type, SoBufferObject *targetBufferObject, const SbDataType dst_type, const size_t size) |
int | convert (SoOpenCLBufferObject *sourceBufferObject, const SbDataType src_type, SoOpenCLBufferObject *targetBufferObject, const SbDataType dst_type, const size_t size) |
This module provides data type conversions, like bytes to floats...
NOTE: The classes in this module do not exist in Open Inventor 10.0 and later.Examples:
SoOpenCLConversion::SoOpenCLConversion | ( | ) |
Constructor.
int SoOpenCLConversion::convert | ( | SoOpenCLBufferObject * | sourceBufferObject, | |
const SbDataType | src_type, | |||
SoOpenCLBufferObject * | targetBufferObject, | |||
const SbDataType | dst_type, | |||
const size_t | size | |||
) |
Convert the data in a buffer object from one data type to another one.
OPENCL input version.
virtual int SoOpenCLConversion::convert | ( | SoBufferObject * | sourceBufferObject, | |
const SbDataType | src_type, | |||
SoBufferObject * | targetBufferObject, | |||
const SbDataType | dst_type, | |||
const size_t | size | |||
) | [virtual] |
Convert the data in a buffer object from one data type to another one.
Notes: The destination buffer and the source buffers can be same.
Limitations: This function only supports FLOAT and UNSIGNED_BYTE for dst_type.
sourceBufferObject | The source buffer object. | |
src_type | The type of the data in the source buffer object. | |
targetBufferObject | The destination buffer object. | |
dst_type | The destination type. | |
size | The number of elements in the source buffer object to convert. |
Reimplemented from SoConversion.
int SoOpenCLConversion::convertFloatToRGBA | ( | SoOpenCLBufferObject * | sourceBufferObject, | |
SoOpenCLBufferObject * | targetBufferObject, | |||
const size_t | size, | |||
const float | dataMin, | |||
const float | dataMax | |||
) |
Convert FLOAT data stored in a buffer to (grayscale) RGBA data.
OpenCL input version.
virtual int SoOpenCLConversion::convertFloatToRGBA | ( | SoBufferObject * | sourceBufferObject, | |
SoBufferObject * | targetBufferObject, | |||
const size_t | size, | |||
const float | dataMin, | |||
const float | dataMax | |||
) | [virtual] |
Convert FLOAT data stored in a buffer to (grayscale) RGBA data.
sourceBufferObject | The source buffer object containing the FLOAT data. | |
targetBufferObject | The target buffer object. | |
size | The number of FLOAT values to convert. | |
dataMin | The minimum value for the greyscale conversion. | |
dataMax | The maximum value for the greyscale conversion. |
Reimplemented from SoConversion.