
Public Member Functions
| ImageData () | |
| ImageData (PassRef, PP_Resource resource) | |
| ImageData (const ImageData &other) | |
| ImageData (const InstanceHandle &instance, PP_ImageDataFormat format, const Size &size, bool init_to_zero) | |
| ImageData & | operator= (const ImageData &other) |
| PP_ImageDataFormat | format () const |
| pp::Size | size () const |
| int32_t | stride () const |
| void * | data () const |
| const uint32_t * | GetAddr32 (const Point &coord) const |
| uint32_t * | GetAddr32 (const Point &coord) |
Static Public Member Functions
| static bool | IsImageDataFormatSupported (PP_ImageDataFormat format) |
| static PP_ImageDataFormat | GetNativeImageDataFormat () |
Constructor & Destructor Documentation
| pp::ImageData::ImageData | ( | PassRef | , |
| PP_Resource | resource | ||
| ) |
A constructor used when you have received a PP_Resource as a return value that has already been reference counted.
- Parameters:
[in] resource A PP_Resource corresponding to image data.
| pp::ImageData::ImageData | ( | const ImageData & | other | ) |
| pp::ImageData::ImageData | ( | const InstanceHandle & | instance, |
| PP_ImageDataFormat | format, | ||
| const Size & | size, | ||
| bool | init_to_zero | ||
| ) |
A constructor that allocates a new ImageData in the browser with the provided parameters.
The resulting object will be is_null() if the allocation failed.
- Parameters:
[in] instance The instance with which this resource will be associated. [in] format A PP_ImageDataFormat containing desired image format. PP_ImageDataFormat is an enumeration of the different types of image data formats. Refer to ppb_image_data.hfor further information.[in] size A pointer to a Sizecontaining the image size.[in] init_to_zero A bool used to determine transparency at creation. Set the init_to_zeroflag if you want the bitmap initialized to transparent during the creation process. If this flag is not set, the current contents of the bitmap will be undefined, and the module should be sure to set all the pixels.
Member Function Documentation
| void* pp::ImageData::data | ( | ) | const [inline] |
A getter function for returning a raw pointer to the image pixels.
- Returns:
- A raw pointer to the image pixels.
| PP_ImageDataFormat pp::ImageData::format | ( | ) | const [inline] |
A getter function for returning the current format for images.
- Returns:
PP_ImageDataFormatcontaining the preferred format.
| const uint32_t* pp::ImageData::GetAddr32 | ( | const Point & | coord | ) | const |
This function is used retrieve the address of the given pixel for 32-bit pixel formats.
- Parameters:
[in] coord A Pointrepresenting the x and y coordinates for a specific pixel.
- Returns:
- The address for the pixel.
| uint32_t* pp::ImageData::GetAddr32 | ( | const Point & | coord | ) |
This function is used retrieve the address of the given pixel for 32-bit pixel formats.
- Parameters:
[in] coord A Pointrepresenting the x and y coordinates for a specific pixel.
- Returns:
- The address for the pixel.
| static PP_ImageDataFormat pp::ImageData::GetNativeImageDataFormat | ( | ) | [static] |
GetNativeImageDataFormat() determines the browser's preferred format for images.
Using this format guarantees no extra conversions will occur when painting.
- Returns:
PP_ImageDataFormatcontaining the preferred format.
| static bool pp::ImageData::IsImageDataFormatSupported | ( | PP_ImageDataFormat | format | ) | [static] |
IsImageDataFormatSupported() returns true if the supplied format is supported by the browser.
Note: PP_IMAGEDATAFORMAT_BGRA_PREMUL and PP_IMAGEDATAFORMAT_RGBA_PREMUL formats are always supported. Other image formats do not make this guarantee, and should be checked first with IsImageDataFormatSupported() before using.
- Parameters:
[in] format Image data format.
- Returns:
trueif the format is supported by the browser.
| pp::Size pp::ImageData::size | ( | ) | const [inline] |
A getter function for returning the image size.
- Returns:
- The image size in pixels.
| int32_t pp::ImageData::stride | ( | ) | const [inline] |
A getter function for returning the row width in bytes.
- Returns:
- The row width in bytes.
The documentation for this class was generated from the following file: