diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2012-07-13 22:24:51 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2012-07-14 09:21:12 +0100 |
commit | ad4786b285074b5bd70b3ad0bea6ec1b77ad6740 (patch) | |
tree | aab0649444e06516357e3f77d69c6e22a4c06d84 /src/sna/sna_video.h | |
parent | a05c3547bba52288bae872ea672ffe2f4dab2ffa (diff) |
sna: Aim for consistency and use stdbool except for core X APIs
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/sna/sna_video.h')
-rw-r--r-- | src/sna/sna_video.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sna/sna_video.h b/src/sna/sna_video.h index 7bfc971b..3ce72c00 100644 --- a/src/sna/sna_video.h +++ b/src/sna/sna_video.h @@ -57,7 +57,7 @@ struct sna_video { struct kgem_bo *old_buf[2]; struct kgem_bo *buf; - Bool textured; + bool textured; Rotation rotation; int plane; @@ -100,7 +100,7 @@ static inline int is_planar_fourcc(int id) } } -Bool +bool sna_video_clip_helper(ScrnInfoPtr scrn, struct sna_video *adaptor_priv, struct sna_video_frame *frame, @@ -123,7 +123,7 @@ sna_video_buffer(struct sna *sna, struct sna_video *video, struct sna_video_frame *frame); -Bool +bool sna_video_copy_data(struct sna *sna, struct sna_video *video, struct sna_video_frame *frame, |