pipebuffer: whitespace fixes in pb_buffer.h

Reviewed-by: Neha Bhende <bhenden@vmware.com>
Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com>
This commit is contained in:
Brian Paul 2019-03-05 19:47:25 -07:00
parent b286e74df6
commit b5f2b0d6b6

View file

@ -76,12 +76,10 @@ enum pb_usage_flags {
PB_USAGE_DONTBLOCK | \ PB_USAGE_DONTBLOCK | \
PB_USAGE_UNSYNCHRONIZED) PB_USAGE_UNSYNCHRONIZED)
#define PB_USAGE_CPU_READ_WRITE \ #define PB_USAGE_CPU_READ_WRITE (PB_USAGE_CPU_READ | PB_USAGE_CPU_WRITE)
( PB_USAGE_CPU_READ | PB_USAGE_CPU_WRITE ) #define PB_USAGE_GPU_READ_WRITE (PB_USAGE_GPU_READ | PB_USAGE_GPU_WRITE)
#define PB_USAGE_GPU_READ_WRITE \ #define PB_USAGE_WRITE (PB_USAGE_CPU_WRITE | PB_USAGE_GPU_WRITE)
( PB_USAGE_GPU_READ | PB_USAGE_GPU_WRITE )
#define PB_USAGE_WRITE \
( PB_USAGE_CPU_WRITE | PB_USAGE_GPU_WRITE )
/** /**
* Buffer description. * Buffer description.
@ -128,23 +126,23 @@ struct pb_buffer
*/ */
struct pb_vtbl struct pb_vtbl
{ {
void (*destroy)( struct pb_buffer *buf ); void (*destroy)(struct pb_buffer *buf);
/** /**
* Map the entire data store of a buffer object into the client's address. * Map the entire data store of a buffer object into the client's address.
* flags is bitmask of PB_USAGE_CPU_READ/WRITE. * flags is bitmask of PB_USAGE_CPU_READ/WRITE.
*/ */
void *(*map)( struct pb_buffer *buf, void *(*map)(struct pb_buffer *buf,
enum pb_usage_flags flags, void *flush_ctx ); enum pb_usage_flags flags, void *flush_ctx);
void (*unmap)( struct pb_buffer *buf ); void (*unmap)(struct pb_buffer *buf);
enum pipe_error (*validate)( struct pb_buffer *buf, enum pipe_error (*validate)(struct pb_buffer *buf,
struct pb_validate *vl, struct pb_validate *vl,
enum pb_usage_flags flags ); enum pb_usage_flags flags);
void (*fence)( struct pb_buffer *buf, void (*fence)(struct pb_buffer *buf,
struct pipe_fence_handle *fence ); struct pipe_fence_handle *fence);
/** /**
* Get the base buffer and the offset. * Get the base buffer and the offset.
@ -157,10 +155,9 @@ struct pb_vtbl
* *
* Note that this will increase the reference count of the base buffer. * Note that this will increase the reference count of the base buffer.
*/ */
void (*get_base_buffer)( struct pb_buffer *buf, void (*get_base_buffer)(struct pb_buffer *buf,
struct pb_buffer **base_buf, struct pb_buffer **base_buf,
pb_size *offset ); pb_size *offset);
}; };
@ -168,8 +165,7 @@ struct pb_vtbl
/* Accessor functions for pb->vtbl: /* Accessor functions for pb->vtbl:
*/ */
static inline void * static inline void *
pb_map(struct pb_buffer *buf, pb_map(struct pb_buffer *buf, enum pb_usage_flags flags, void *flush_ctx)
enum pb_usage_flags flags, void *flush_ctx)
{ {
assert(buf); assert(buf);
if (!buf) if (!buf)
@ -191,9 +187,9 @@ pb_unmap(struct pb_buffer *buf)
static inline void static inline void
pb_get_base_buffer( struct pb_buffer *buf, pb_get_base_buffer(struct pb_buffer *buf,
struct pb_buffer **base_buf, struct pb_buffer **base_buf,
pb_size *offset ) pb_size *offset)
{ {
assert(buf); assert(buf);
if (!buf) { if (!buf) {
@ -242,6 +238,7 @@ pb_destroy(struct pb_buffer *buf)
buf->vtbl->destroy(buf); buf->vtbl->destroy(buf);
} }
static inline void static inline void
pb_reference(struct pb_buffer **dst, pb_reference(struct pb_buffer **dst,
struct pb_buffer *src) struct pb_buffer *src)
@ -249,7 +246,7 @@ pb_reference(struct pb_buffer **dst,
struct pb_buffer *old = *dst; struct pb_buffer *old = *dst;
if (pipe_reference(&(*dst)->reference, &src->reference)) if (pipe_reference(&(*dst)->reference, &src->reference))
pb_destroy( old ); pb_destroy(old);
*dst = src; *dst = src;
} }
@ -261,11 +258,11 @@ pb_reference(struct pb_buffer **dst,
static inline boolean static inline boolean
pb_check_alignment(pb_size requested, pb_size provided) pb_check_alignment(pb_size requested, pb_size provided)
{ {
if(!requested) if (!requested)
return TRUE; return TRUE;
if(requested > provided) if (requested > provided)
return FALSE; return FALSE;
if(provided % requested != 0) if (provided % requested != 0)
return FALSE; return FALSE;
return TRUE; return TRUE;
} }