mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
cogl: Remove cogl_util_ffs macro
Since commit 46942c24
, we don't need the wrapper macro as we always
require its implementation to be available on the build system.
https://gitlab.gnome.org/GNOME/mutter/merge_requests/629
This commit is contained in:
parent
be72b22964
commit
79e22853ea
@ -173,7 +173,7 @@ _cogl_pipeline_layer_copy_differences (CoglPipelineLayer *dest,
|
||||
|
||||
while (differences)
|
||||
{
|
||||
int index = _cogl_util_ffs (differences) - 1;
|
||||
int index = ffs (differences) - 1;
|
||||
|
||||
differences &= ~(1 << index);
|
||||
|
||||
|
@ -114,7 +114,6 @@ unsigned int
|
||||
_cogl_util_one_at_a_time_mix (unsigned int hash);
|
||||
|
||||
|
||||
#define _cogl_util_ffs ffs
|
||||
#define _cogl_util_ffsl __builtin_ffsl
|
||||
|
||||
static inline unsigned int
|
||||
|
@ -40,7 +40,7 @@
|
||||
static inline int
|
||||
calculate_alignment (int rowstride)
|
||||
{
|
||||
int alignment = 1 << (_cogl_util_ffs (rowstride) - 1);
|
||||
int alignment = 1 << (ffs (rowstride) - 1);
|
||||
|
||||
return MIN (alignment, 8);
|
||||
}
|
||||
|
@ -163,7 +163,7 @@ prepare_bitmap_alignment_for_upload (CoglContext *ctx,
|
||||
return cogl_object_ref (src_bmp);
|
||||
|
||||
/* Work out the alignment of the source rowstride */
|
||||
alignment = 1 << (_cogl_util_ffs (src_rowstride) - 1);
|
||||
alignment = 1 << (ffs (src_rowstride) - 1);
|
||||
alignment = MIN (alignment, 8);
|
||||
|
||||
/* If the aligned data equals the rowstride then we can upload from
|
||||
|
Loading…
Reference in New Issue
Block a user