diff options
author | Younes Manton <[email protected]> | 2009-01-12 13:19:07 -0500 |
---|---|---|
committer | Younes Manton <[email protected]> | 2009-01-18 21:40:10 -0500 |
commit | c35dc4a741d4147a5da8bbe834a38a4c2ce627d1 (patch) | |
tree | 49880bd3e0cf8a05ce5164103dc9254d2b06f972 /src/xvmc/attributes.c | |
parent | 1fd411539b9b7b8ae46c1aff0a000d9b4a8f5f3b (diff) |
g3dvl: Follow mesa naming conventions for src dirs.
Diffstat (limited to 'src/xvmc/attributes.c')
-rw-r--r-- | src/xvmc/attributes.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/xvmc/attributes.c b/src/xvmc/attributes.c new file mode 100644 index 00000000000..674524b8b82 --- /dev/null +++ b/src/xvmc/attributes.c @@ -0,0 +1,20 @@ +#include <assert.h> +#include <X11/Xlib.h> +#include <X11/extensions/Xvlib.h> +#include <X11/extensions/XvMC.h> + +XvAttribute* XvMCQueryAttributes(Display *display, XvMCContext *context, int *number) +{ + return NULL; +} + +Status XvMCSetAttribute(Display *display, XvMCContext *context, Atom attribute, int value) +{ + return BadImplementation; +} + +Status XvMCGetAttribute(Display *display, XvMCContext *context, Atom attribute, int *value) +{ + return BadImplementation; +} + |