diff options
author | Emeric Grange <[email protected]> | 2011-09-12 23:39:29 +0200 |
---|---|---|
committer | Christian König <[email protected]> | 2011-09-14 15:49:16 +0200 |
commit | c24bc6f8684abee8c9a1b263334cd7a8506657b1 (patch) | |
tree | 4cf3ac9347e521f63350c0778bca9ec8f4778499 /src/gallium/state_trackers/vdpau/preemption.c | |
parent | 87e84a2dbfb5ee330d4d5594963d7f8b507f9984 (diff) |
st/vdpau: Various whitespace cleanups found while reading some code
Signed-off-by: Emeric Grange <[email protected]>
Reviewed-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/vdpau/preemption.c')
-rw-r--r-- | src/gallium/state_trackers/vdpau/preemption.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/gallium/state_trackers/vdpau/preemption.c b/src/gallium/state_trackers/vdpau/preemption.c index fa70bb09cbc..75933c11329 100644 --- a/src/gallium/state_trackers/vdpau/preemption.c +++ b/src/gallium/state_trackers/vdpau/preemption.c @@ -25,15 +25,16 @@ * **************************************************************************/ - #include <vdpau/vdpau.h> +#include <vdpau/vdpau.h> - void vlVdpPreemptionCallback(VdpDevice device, void *context) - { +void vlVdpPreemptionCallback(VdpDevice device, void *context) +{ /* TODO: Implement preemption */ - } +} - VdpStatus vlVdpPreemptionCallbackRegister(VdpDevice device, VdpPreemptionCallback callback, - void *context) - { +VdpStatus vlVdpPreemptionCallbackRegister(VdpDevice device, + VdpPreemptionCallback callback, + void *context) +{ return VDP_STATUS_OK; - } +} |