Lines Matching refs:image

734     /* Append image formats */
1156 /* Get maximum number of image formats supported by the implementation */
1193 VAImage *image /* out */
1200 return ctx->vtable->vaCreateImage ( ctx, format, width, height, image);
1208 VAImageID image
1215 return ctx->vtable->vaDestroyImage ( ctx, image);
1220 VAImageID image,
1228 return ctx->vtable->vaSetImagePalette ( ctx, image, palette);
1242 VAImageID image
1249 return ctx->vtable->vaGetImage ( ctx, surface, x, y, width, height, image);
1259 VAImageID image,
1274 return ctx->vtable->vaPutImage ( ctx, surface, image, src_x, src_y, src_width, src_height, dest_x, dest_y, dest_width, dest_height );
1279 * This interface will derive a VAImage and corresponding image buffer from
1280 * an existing VA Surface. The image buffer can then be mapped/unmapped for
1288 * Implementations should only return success when the resulting image buffer
1300 * Calls to vaPutImage or vaGetImage using the same surface from which the image
1304 * An image created with vaDeriveImage should be freed with vaDestroyImage. The
1305 * image and image buffer structures will be destroyed; however, the underlying
1311 VAImage *image /* out */
1318 return ctx->vtable->vaDeriveImage ( ctx, surface, image );
1356 * Subpictures are created with an image associated.
1360 VAImageID image,
1368 return ctx->vtable->vaCreateSubpicture ( ctx, image, subpicture );
1372 * Destroy the subpicture before destroying the image it is assocated to
1389 VAImageID image
1396 return ctx->vtable->vaSetSubpictureImage ( ctx, subpicture, image);