gallium: s/bool/boolean/
authorBrian Paul <brianp@vmware.com>
Wed, 8 Jun 2011 14:05:40 +0000 (08:05 -0600)
committerBrian Paul <brianp@vmware.com>
Wed, 8 Jun 2011 14:05:40 +0000 (08:05 -0600)
13 files changed:
src/gallium/auxiliary/gallivm/lp_bld_tgsi_info.c
src/gallium/auxiliary/util/u_linkage.h
src/gallium/auxiliary/util/u_staging.c
src/gallium/auxiliary/util/u_staging.h
src/gallium/drivers/i915/i915_batchbuffer.h
src/gallium/drivers/nvfx/nvfx_surface.c
src/gallium/drivers/nvfx/nvfx_transfer.c
src/gallium/drivers/r300/r300_state_derived.c
src/gallium/drivers/r600/r600_asm.c
src/gallium/drivers/r600/r600_pipe.h
src/gallium/tests/unit/u_format_test.c
src/gallium/winsys/r600/drm/r600_bomgr.c
src/gallium/winsys/r600/drm/r600_priv.h

index ad514463de08da05f0fbb5ce8f34d2610ee9c13e..5ad32d9182c6922dea0776ad258c7ce90a183947 100644 (file)
@@ -105,7 +105,7 @@ analyse_tex(struct analysis_context *ctx,
 
    if (info->num_texs < Elements(info->tex)) {
       struct lp_tgsi_texture_info *tex_info = &info->tex[info->num_texs];
-      bool indirect = FALSE;
+      boolean indirect = FALSE;
       unsigned readmask = 0;
 
       tex_info->target = inst->Texture.Texture;
index 4720e0ee603debf12a8b06f4691ac8d529595a99..43ec917fc816e66309ace647493f91704cf34da7 100644 (file)
@@ -35,7 +35,7 @@ struct util_semantic_set
    unsigned long masks[256 / 8 / sizeof(unsigned long)];
 };
 
-static INLINE bool
+static INLINE boolean
 util_semantic_set_contains(struct util_semantic_set *set, unsigned char value)
 {
    return !!(set->masks[value / (sizeof(long) * 8)] & (1 << (value / (sizeof(long) * 8))));
index b6bf241a22a2d8ad96d4af04093bf065b11db14b..b5e37932e835ee3e4757f60f183719b74bd106bb 100644 (file)
@@ -55,7 +55,7 @@ util_staging_transfer_init(struct pipe_context *pipe,
            unsigned level,
            unsigned usage,
            const struct pipe_box *box,
-           bool direct, struct util_staging_transfer *tx)
+           boolean direct, struct util_staging_transfer *tx)
 {
    struct pipe_screen *pscreen = pipe->screen;
 
index 49839d254396d1c6740fe75dec492f0d36d4d0f7..ddbb33443e4e8ce192de7f26e8d1d97b7cc061e8 100644 (file)
@@ -55,7 +55,7 @@ util_staging_transfer_init(struct pipe_context *pipe,
            unsigned level,
            unsigned usage,
            const struct pipe_box *box,
-           bool direct, struct util_staging_transfer *tx);
+           boolean direct, struct util_staging_transfer *tx);
 
 void
 util_staging_transfer_destroy(struct pipe_context *pipe, struct pipe_transfer *ptx);
index 78554034781b8d89ee1632b2ce2aa177f606ebed..14ae749c828c0df0183b6853df505022035be3f6 100644 (file)
@@ -95,7 +95,7 @@ static INLINE int
 i915_winsys_batchbuffer_reloc(struct i915_winsys_batchbuffer *batch,
                               struct i915_winsys_buffer *buffer,
                               enum i915_winsys_buffer_usage usage,
-                              size_t offset, bool fenced)
+                              size_t offset, boolean fenced)
 {
    return batch->iws->batchbuffer_reloc(batch, buffer, usage, offset, fenced);
 }
index ced26494e15430b1920e4b19a21a4220929d3212..339906e6a638539eeffe6add861fe6a56cb67377 100644 (file)
@@ -84,7 +84,7 @@ nvfx_region_set_format(struct nv04_region* rgn, enum pipe_format format)
 }
 
 static INLINE void
-nvfx_region_init_for_surface(struct nv04_region* rgn, struct nvfx_surface* surf, unsigned x, unsigned y, bool for_write)
+nvfx_region_init_for_surface(struct nv04_region* rgn, struct nvfx_surface* surf, unsigned x, unsigned y, boolean for_write)
 {
        rgn->x = x;
        rgn->y = y;
@@ -120,7 +120,7 @@ nvfx_region_init_for_surface(struct nv04_region* rgn, struct nvfx_surface* surf,
 }
 
 static INLINE void
-nvfx_region_init_for_subresource(struct nv04_region* rgn, struct pipe_resource* pt, unsigned level, unsigned x, unsigned y, unsigned z, bool for_write)
+nvfx_region_init_for_subresource(struct nv04_region* rgn, struct pipe_resource* pt, unsigned level, unsigned x, unsigned y, unsigned z, boolean for_write)
 {
        if(pt->target != PIPE_BUFFER)
        {
index 2debcb6eb8f92578fcb9221009438f0f16321549..cc4b51ec1f8db06f16c62a317b1d980de03ee7c3 100644 (file)
@@ -56,7 +56,7 @@ nvfx_transfer_new(struct pipe_context *pipe,
        else
        {
                struct nvfx_staging_transfer* tx;
-               bool direct = !nvfx_resource_on_gpu(pt) && pt->flags & NVFX_RESOURCE_FLAG_LINEAR;
+               boolean direct = !nvfx_resource_on_gpu(pt) && pt->flags & NVFX_RESOURCE_FLAG_LINEAR;
 
                tx = CALLOC_STRUCT(nvfx_staging_transfer);
                if(!tx)
index 04499c78cc672b50b8e85127d8d261fefa6dd680..121409b22604887fb8244f1f75d368e08ef8175b 100644 (file)
@@ -438,7 +438,7 @@ static void r300_update_rs_block(struct r300_context *r300)
 
     /* Rasterize texture coordinates. */
     for (i = 0; i < ATTR_GENERIC_COUNT && tex_count < 8; i++) {
-       bool sprite_coord = false;
+       boolean sprite_coord = false;
 
        if (fs_inputs->generic[i] != ATTR_UNUSED) {
            sprite_coord = !!(r300->sprite_coord_enable & (1 << i));
index 65e539eba35c8cf0b39ceb859da28ef10a8fc235..3196d97dbbb4cbeda4512d30ee84f1d89fd8b87f 100644 (file)
@@ -1088,7 +1088,7 @@ static int r600_bc_alloc_kcache_lines(struct r600_bc *bc, struct r600_bc_alu *al
 
        /* Collect required cache lines. */
        for (i = 0; i < 3; ++i) {
-               bool found = false;
+               boolean found = false;
                unsigned int line;
 
                if (alu->src[i].sel < 512)
@@ -1140,7 +1140,7 @@ static int r600_bc_alloc_kcache_lines(struct r600_bc *bc, struct r600_bc_alu *al
 
        /* Setup the kcache lines. */
        for (i = 0; i < count; ++i) {
-               bool found = false;
+               boolean found = false;
 
                for (j = 0; j < 2; ++j) {
                        if (kcache[j].mode == V_SQ_CF_KCACHE_LOCK_2 &&
index f40d6fd3fa2c79601e01c76c800110ff7f10f576..d92b74ebc4e6197a4c6da885bf82d8592ea0adda 100644 (file)
@@ -87,7 +87,7 @@ struct r600_pipe_sampler_view {
 
 struct r600_pipe_rasterizer {
        struct r600_pipe_state          rstate;
-       bool                            flatshade;
+       boolean                         flatshade;
        unsigned                        sprite_coord_enable;
        float                           offset_units;
        float                           offset_scale;
@@ -193,17 +193,17 @@ struct r600_pipe_context {
        struct r600_pipe_state          spi;
        /* shader information */
        unsigned                        sprite_coord_enable;
-       bool                            flatshade;
-       bool                            export_16bpc;
+       boolean                         flatshade;
+       boolean                         export_16bpc;
        unsigned                        alpha_ref;
-       bool                            alpha_ref_dirty;
+       boolean                         alpha_ref_dirty;
        struct r600_textures_info       ps_samplers;
 
        struct r600_pipe_fences         fences;
 
        struct u_vbuf_mgr               *vbuf_mgr;
        struct util_slab_mempool        pool_transfers;
-       bool                            blit;
+       boolean                         blit;
 
 };
 
index ba0dd17957e099ab28f4361cf932653a005e4106..f831e5dd754817afcf396f3e7aa01c672cbf009d 100644 (file)
@@ -638,7 +638,7 @@ test_one_func(const struct util_format_description *format_desc,
               const char *suffix)
 {
    unsigned i;
-   bool success = TRUE;
+   boolean success = TRUE;
 
    printf("Testing util_format_%s_%s ...\n",
           format_desc->short_name, suffix);
@@ -662,7 +662,7 @@ static boolean
 test_all(void)
 {
    enum pipe_format format;
-   bool success = TRUE;
+   boolean success = TRUE;
 
    for (format = 1; format < PIPE_FORMAT_COUNT; ++format) {
       const struct util_format_description *format_desc;
index 446ef0f9cfc0afa3d03c6a7ad5e0b7a02ce62b5a..4918d5eb0b14b950d4843a873d4a1eb62d3278f0 100644 (file)
@@ -116,7 +116,7 @@ void r600_bomgr_bo_init(struct r600_bomgr *mgr, struct r600_bo *bo)
        bo->manager_id = 1;
 }
 
-bool r600_bomgr_bo_destroy(struct r600_bomgr *mgr, struct r600_bo *bo)
+boolean r600_bomgr_bo_destroy(struct r600_bomgr *mgr, struct r600_bo *bo)
 {
        bo->start = os_time_get();
        bo->end = bo->start + mgr->usecs;
index 082370ae1067fdb91c492a7e05a7a9794866abf1..45bc64fcf9abab1bf974e4891e89b064dd525718 100644 (file)
@@ -197,7 +197,7 @@ void r600_bo_destroy(struct radeon *radeon, struct r600_bo *bo);
  */
 struct r600_bomgr *r600_bomgr_create(struct radeon *radeon, unsigned usecs);
 void r600_bomgr_destroy(struct r600_bomgr *mgr);
-bool r600_bomgr_bo_destroy(struct r600_bomgr *mgr, struct r600_bo *bo);
+boolean r600_bomgr_bo_destroy(struct r600_bomgr *mgr, struct r600_bo *bo);
 void r600_bomgr_bo_init(struct r600_bomgr *mgr, struct r600_bo *bo);
 struct r600_bo *r600_bomgr_bo_create(struct r600_bomgr *mgr,
                                        unsigned size,
@@ -230,7 +230,7 @@ static inline void radeon_bo_unmap(struct radeon *radeon, struct radeon_bo *bo)
 /*
  * fence
  */
-static inline bool fence_is_after(unsigned fence, unsigned ofence)
+static inline boolean fence_is_after(unsigned fence, unsigned ofence)
 {
        /* handle wrap around */
        if (fence < 0x80000000 && ofence > 0x80000000)