1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PPAPI_C_PPB_IMAGE_DATA_H_
#define PPAPI_C_PPB_IMAGE_DATA_H_
#include "ppapi/c/pp_bool.h"
#include "ppapi/c/pp_macros.h"
#include "ppapi/c/pp_module.h"
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_size.h"
#include "ppapi/c/pp_stdint.h"
typedef enum {
PP_IMAGEDATAFORMAT_BGRA_PREMUL,
PP_IMAGEDATAFORMAT_RGBA_PREMUL
} PP_ImageDataFormat;
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_ImageDataFormat, 4);
struct PP_ImageDataDesc {
PP_ImageDataFormat format;
// Size of the bitmap in pixels.
struct PP_Size size;
// The row width in bytes. This may be different than width * 4 since there
// may be padding at the end of the lines.
int32_t stride;
};
PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_ImageDataDesc, 16);
#define PPB_IMAGEDATA_INTERFACE "PPB_ImageData;0.2"
/**
* @file
* Defines the API ...
*
* @addtogroup PPB
* @{
*/
struct PPB_ImageData {
/**
* Returns the browser's preferred format for image data. This format will be
* the format is uses internally for painting. Other formats may require
* internal conversions to paint or may have additional restrictions depending
* on the function.
*/
PP_ImageDataFormat (*GetNativeImageDataFormat)();
/**
* Returns PP_TRUE if the given image data format is supported by the browser.
*/
PP_Bool (*IsImageDataFormatSupported)(PP_ImageDataFormat format);
/**
* Allocates an image data resource with the given format and size. The
* return value will have a nonzero ID on success, or zero on failure.
* Failure means the module handle, image size, or format was invalid.
*
* Set the init_to_zero flag 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 plugin should
* be sure to set all the pixels.
*
* For security reasons, if uninitialized, the bitmap will not contain random
* memory, but may contain data from a previous image produced by the same
* plugin if the bitmap was cached and re-used.
*/
PP_Resource (*Create)(PP_Module module,
PP_ImageDataFormat format,
const struct PP_Size* size,
PP_Bool init_to_zero);
/**
* Returns PP_TRUE if the given resource is an image data. Returns PP_FALSE if
* the resource is invalid or some type other than an image data.
*/
PP_Bool (*IsImageData)(PP_Resource image_data);
/**
* Computes the description of the image data. Returns PP_TRUE on success,
* PP_FALSE if the resource is not an image data. On PP_FALSE, the |desc|
* structure will be filled with 0.
*/
PP_Bool (*Describe)(PP_Resource image_data,
struct PP_ImageDataDesc* desc);
/**
* Maps this bitmap into the plugin address space and returns a pointer to the
* beginning of the data.
*/
void* (*Map)(PP_Resource image_data);
void (*Unmap)(PP_Resource image_data);
};
/**
* @}
* End addtogroup PPB
*/
#endif // PPAPI_C_PPB_IMAGE_DATA_H_
|