Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(546)

Side by Side Diff: third_party/libva/va/egl/va_egl.h

Issue 62273006: Update libva headers to the latest release (1.2.1). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #ifndef _VA_EGL_H_
2 #define _VA_EGL_H_
3
4 #include <va/va.h>
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 typedef void* EGLClientBuffer;
11
12 /*This function is used to get EGLClientBuffer
13 * (lower 16bits is buffer index, upper 16bits
14 * is BC device id.) from surface id. Application
15 * should maintain EGLClientBuffer itself.*/
16
17 VAStatus vaGetEGLClientBufferFromSurface (
18 VADisplay dpy,
19 VASurfaceID surface,
20 EGLClientBuffer *buffer /* out*/
21 );
22
23 #ifdef __cplusplus
24 }
25 #endif
26
27 #endif /* _VA_EGL_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698