Пример #1
0
 /**
  * Describe() computes the description of the
  * image data.
  *
  * @param[in] image_data A <code>PP_Resource</code> corresponding to image
  * data.
  * @param[in,out] desc A pointer to a <code>PP_ImageDataDesc</code>
  * containing the description.
  *
  * @return A <code>PP_Bool</code> with <code>PP_TRUE</code> on success or
  * <code>PP_FALSE</code> if the resource is not an image data. On
  * <code>PP_FALSE</code>, the <code>desc</code> structure will be filled
  * with 0.
  */
 public static PPBool Describe(PPResource image_data,
                               out PPImageDataDesc desc)
 {
     return(_Describe(image_data, out desc));
 }
Пример #2
0
 extern static PPBool _Describe(PPResource image_data,
                                out PPImageDataDesc desc);