diff options
Diffstat (limited to 'va/va.h')
-rw-r--r-- | va/va.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -721,6 +721,15 @@ typedef struct _VASurfaceAttribExternalBuffers { /**@{*/ /** \brief Enable memory tiling */ #define VA_SURFACE_EXTBUF_DESC_ENABLE_TILING 0x00000001 +/** \brief Memory is cacheable */ +#define VA_SURFACE_EXTBUF_DESC_CACHED 0x00000002 +/** \brief Memory is non-cacheable */ +#define VA_SURFACE_EXTBUF_DESC_UNCACHED 0x00000004 +/** \brief Memory is write-combined */ +#define VA_SURFACE_EXTBUF_DESC_WC 0x00000008 +/** \brief Memory is protected */ +#define VA_SURFACE_EXTBUF_DESC_PROTECTED 0x80000000 + /**@}*/ /** |