2008-04-25 13:37:36 +00:00
|
|
|
/*
|
2009-04-27 14:48:12 +00:00
|
|
|
* Cogl
|
2008-04-25 13:37:36 +00:00
|
|
|
*
|
2014-02-22 01:28:54 +00:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2008-04-25 13:37:36 +00:00
|
|
|
*
|
2010-02-11 14:20:48 +00:00
|
|
|
* Copyright (C) 2007,2008,2009,2010 Intel Corporation.
|
2008-04-25 13:37:36 +00:00
|
|
|
*
|
2014-02-22 01:28:54 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation
|
|
|
|
* files (the "Software"), to deal in the Software without
|
|
|
|
* restriction, including without limitation the rights to use, copy,
|
|
|
|
* modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
* of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2008-04-25 13:37:36 +00:00
|
|
|
*
|
2014-02-22 01:28:54 +00:00
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
2008-04-25 13:37:36 +00:00
|
|
|
*
|
2014-02-22 01:28:54 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
2010-03-01 12:56:10 +00:00
|
|
|
*
|
|
|
|
*
|
2008-04-25 13:37:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_UTIL_H
|
|
|
|
#define __COGL_UTIL_H
|
|
|
|
|
2010-02-11 14:20:48 +00:00
|
|
|
#include <glib.h>
|
|
|
|
#include <math.h>
|
2012-02-18 01:19:17 +00:00
|
|
|
|
|
|
|
#include <cogl/cogl-defines.h>
|
2019-04-04 09:02:47 +00:00
|
|
|
#include <cogl/cogl-pixel-format.h>
|
2012-02-17 20:44:28 +00:00
|
|
|
#include "cogl-types.h"
|
2010-02-11 14:20:48 +00:00
|
|
|
|
2011-10-13 21:34:30 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2012-04-16 16:23:15 +00:00
|
|
|
/* Double check that config.h has been included */
|
2018-05-21 20:18:03 +00:00
|
|
|
#ifndef COGL_CONFIG_H_INCLUDED
|
2016-05-05 14:21:51 +00:00
|
|
|
#error "cogl-config.h must be included before including cogl-util.h"
|
2012-04-16 16:23:15 +00:00
|
|
|
#endif
|
|
|
|
|
2009-04-27 14:48:12 +00:00
|
|
|
int
|
2010-09-15 13:39:05 +00:00
|
|
|
_cogl_util_next_p2 (int a);
|
2008-04-25 13:37:36 +00:00
|
|
|
|
2010-02-11 14:20:48 +00:00
|
|
|
/* The signbit macro is defined by ISO C99 so it should be available,
|
|
|
|
however if it's not we can fallback to an evil hack */
|
|
|
|
#ifdef signbit
|
|
|
|
#define cogl_util_float_signbit(x) signbit(x)
|
|
|
|
#else
|
|
|
|
/* This trick was stolen from here:
|
|
|
|
http://lists.boost.org/Archives/boost/2006/08/108731.php
|
|
|
|
|
|
|
|
It xors the integer reinterpretations of -1.0f and 1.0f. In theory
|
|
|
|
they should only differ by the signbit so that gives a mask for the
|
|
|
|
sign which we can just test against the value */
|
2018-11-24 12:04:47 +00:00
|
|
|
static inline gboolean
|
2010-02-11 14:20:48 +00:00
|
|
|
cogl_util_float_signbit (float x)
|
|
|
|
{
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 20:56:40 +00:00
|
|
|
static const union { float f; uint32_t i; } negative_one = { -1.0f };
|
|
|
|
static const union { float f; uint32_t i; } positive_one = { +1.0f };
|
|
|
|
union { float f; uint32_t i; } value = { x };
|
2010-02-11 14:20:48 +00:00
|
|
|
|
|
|
|
return !!((negative_one.i ^ positive_one.i) & value.i);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-02-17 15:58:32 +00:00
|
|
|
/* This is a replacement for the nearbyint function which always
|
|
|
|
rounds to the nearest integer. nearbyint is apparently a C99
|
|
|
|
function so it might not always be available but also it seems in
|
|
|
|
glibc it is defined as a function call so this macro could end up
|
|
|
|
faster anyway. We can't just add 0.5f because it will break for
|
|
|
|
negative numbers. */
|
|
|
|
#define COGL_UTIL_NEARBYINT(x) ((int) ((x) < 0.0f ? (x) - 0.5f : (x) + 0.5f))
|
|
|
|
|
2010-07-01 10:07:03 +00:00
|
|
|
/* Returns whether the given integer is a power of two */
|
2018-11-24 12:04:47 +00:00
|
|
|
static inline gboolean
|
2010-07-01 10:07:03 +00:00
|
|
|
_cogl_util_is_pot (unsigned int num)
|
|
|
|
{
|
|
|
|
/* Make sure there is only one bit set */
|
|
|
|
return (num & (num - 1)) == 0;
|
|
|
|
}
|
|
|
|
|
2010-11-04 13:57:36 +00:00
|
|
|
/* Split Bob Jenkins' One-at-a-Time hash
|
|
|
|
*
|
|
|
|
* This uses the One-at-a-Time hash algorithm designed by Bob Jenkins
|
|
|
|
* but the mixing step is split out so the function can be used in a
|
|
|
|
* more incremental fashion.
|
|
|
|
*/
|
|
|
|
static inline unsigned int
|
|
|
|
_cogl_util_one_at_a_time_hash (unsigned int hash,
|
2012-04-04 21:20:04 +00:00
|
|
|
const void *key,
|
2010-11-04 13:57:36 +00:00
|
|
|
size_t bytes)
|
|
|
|
{
|
2012-04-04 21:20:04 +00:00
|
|
|
const unsigned char *p = key;
|
2016-05-05 14:26:10 +00:00
|
|
|
size_t i;
|
2010-11-04 13:57:36 +00:00
|
|
|
|
|
|
|
for (i = 0; i < bytes; i++)
|
|
|
|
{
|
|
|
|
hash += p[i];
|
|
|
|
hash += (hash << 10);
|
|
|
|
hash ^= (hash >> 6);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int
|
|
|
|
_cogl_util_one_at_a_time_mix (unsigned int hash);
|
|
|
|
|
2011-11-01 13:10:59 +00:00
|
|
|
|
2011-10-28 19:09:53 +00:00
|
|
|
#define _cogl_util_ffsl __builtin_ffsl
|
2011-11-01 13:10:59 +00:00
|
|
|
|
2012-11-09 17:55:54 +00:00
|
|
|
static inline unsigned int
|
|
|
|
_cogl_util_fls (unsigned int n)
|
|
|
|
{
|
|
|
|
return n == 0 ? 0 : sizeof (unsigned int) * 8 - __builtin_clz (n);
|
|
|
|
}
|
|
|
|
|
2011-11-01 13:10:59 +00:00
|
|
|
#define _cogl_util_popcountl __builtin_popcountl
|
2011-10-28 19:09:53 +00:00
|
|
|
|
2012-02-17 20:44:28 +00:00
|
|
|
/* Match a CoglPixelFormat according to channel masks, color depth,
|
|
|
|
* bits per pixel and byte order. These information are provided by
|
|
|
|
* the Visual and XImage structures.
|
|
|
|
*
|
|
|
|
* If no specific pixel format could be found, COGL_PIXEL_FORMAT_ANY
|
|
|
|
* is returned.
|
|
|
|
*/
|
|
|
|
CoglPixelFormat
|
|
|
|
_cogl_util_pixel_format_from_masks (unsigned long r_mask,
|
|
|
|
unsigned long g_mask,
|
|
|
|
unsigned long b_mask,
|
|
|
|
int depth, int bpp,
|
|
|
|
int byte_order);
|
|
|
|
|
2012-04-16 16:23:15 +00:00
|
|
|
/* _COGL_STATIC_ASSERT:
|
|
|
|
* @expression: An expression to assert evaluates to true at compile
|
|
|
|
* time.
|
|
|
|
* @message: A message to print to the console if the assertion fails
|
|
|
|
* at compile time.
|
|
|
|
*
|
|
|
|
* Allows you to assert that an expression evaluates to true at
|
|
|
|
* compile time and aborts compilation if not. If possible message
|
|
|
|
* will also be printed if the assertion fails.
|
|
|
|
*/
|
|
|
|
#define _COGL_STATIC_ASSERT(EXPRESSION, MESSAGE) \
|
2013-10-14 16:28:11 +00:00
|
|
|
_Static_assert (EXPRESSION, MESSAGE);
|
2012-04-16 16:23:15 +00:00
|
|
|
|
2012-10-02 10:44:00 +00:00
|
|
|
static inline void
|
|
|
|
_cogl_util_scissor_intersect (int rect_x0,
|
|
|
|
int rect_y0,
|
|
|
|
int rect_x1,
|
|
|
|
int rect_y1,
|
|
|
|
int *scissor_x0,
|
|
|
|
int *scissor_y0,
|
|
|
|
int *scissor_x1,
|
|
|
|
int *scissor_y1)
|
|
|
|
{
|
|
|
|
*scissor_x0 = MAX (*scissor_x0, rect_x0);
|
|
|
|
*scissor_y0 = MAX (*scissor_y0, rect_y0);
|
|
|
|
*scissor_x1 = MIN (*scissor_x1, rect_x1);
|
|
|
|
*scissor_y1 = MIN (*scissor_y1, rect_y1);
|
|
|
|
}
|
|
|
|
|
2008-04-25 13:37:36 +00:00
|
|
|
#endif /* __COGL_UTIL_H */
|