cogl: Do the premult conversion in-place rather than copying to a new buffer
The premult part of _cogl_convert_premult has now been split out as _cogl_convert_premult_status. _cogl_convert_premult has been renamed to _cogl_convert_format to make it less confusing. The premult conversion is now done in-place instead of copying the buffer. Previously it was copying the buffer once for the format conversion and then copying it again for the premult conversion. The premult conversion never changes the size of the buffer so it's quite easy to do in place. We can also use the separated out function independently.
This commit is contained in:
parent
72fba19eac
commit
e83ffb1fa3
@ -543,7 +543,7 @@ _cogl_atlas_texture_set_region (CoglTexture *tex,
|
|||||||
if (closest_format != format)
|
if (closest_format != format)
|
||||||
{
|
{
|
||||||
/* Convert to required format */
|
/* Convert to required format */
|
||||||
success = _cogl_bitmap_convert_and_premult (&source_bmp,
|
success = _cogl_bitmap_convert_format_and_premult (&source_bmp,
|
||||||
&temp_bmp,
|
&temp_bmp,
|
||||||
closest_format);
|
closest_format);
|
||||||
|
|
||||||
|
@ -150,7 +150,7 @@ _cogl_rgba_to_abgr (const guchar *src, guchar *dst)
|
|||||||
/* (Un)Premultiplication */
|
/* (Un)Premultiplication */
|
||||||
|
|
||||||
inline static void
|
inline static void
|
||||||
_cogl_unpremult_alpha_0 (const guchar *src, guchar *dst)
|
_cogl_unpremult_alpha_0 (guchar *dst)
|
||||||
{
|
{
|
||||||
dst[0] = 0;
|
dst[0] = 0;
|
||||||
dst[1] = 0;
|
dst[1] = 0;
|
||||||
@ -159,58 +159,58 @@ _cogl_unpremult_alpha_0 (const guchar *src, guchar *dst)
|
|||||||
}
|
}
|
||||||
|
|
||||||
inline static void
|
inline static void
|
||||||
_cogl_unpremult_alpha_last (const guchar *src, guchar *dst)
|
_cogl_unpremult_alpha_last (guchar *dst)
|
||||||
{
|
{
|
||||||
guchar alpha = src[3];
|
guchar alpha = dst[3];
|
||||||
|
|
||||||
dst[0] = (src[0] * 255) / alpha;
|
dst[0] = (dst[0] * 255) / alpha;
|
||||||
dst[1] = (src[1] * 255) / alpha;
|
dst[1] = (dst[1] * 255) / alpha;
|
||||||
dst[2] = (src[2] * 255) / alpha;
|
dst[2] = (dst[2] * 255) / alpha;
|
||||||
dst[3] = alpha;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
inline static void
|
inline static void
|
||||||
_cogl_unpremult_alpha_first (const guchar *src, guchar *dst)
|
_cogl_unpremult_alpha_first (guchar *dst)
|
||||||
{
|
{
|
||||||
guchar alpha = src[0];
|
guchar alpha = dst[0];
|
||||||
|
|
||||||
dst[0] = alpha;
|
dst[1] = (dst[1] * 255) / alpha;
|
||||||
dst[1] = (src[1] * 255) / alpha;
|
dst[2] = (dst[2] * 255) / alpha;
|
||||||
dst[2] = (src[2] * 255) / alpha;
|
dst[3] = (dst[3] * 255) / alpha;
|
||||||
dst[3] = (src[3] * 255) / alpha;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* No division form of floor((c*a + 128)/255) (I first encountered
|
/* No division form of floor((c*a + 128)/255) (I first encountered
|
||||||
* this in the RENDER implementation in the X server.) Being exact
|
* this in the RENDER implementation in the X server.) Being exact
|
||||||
* is important for a == 255 - we want to get exactly c.
|
* is important for a == 255 - we want to get exactly c.
|
||||||
*/
|
*/
|
||||||
#define MULT(d,c,a,t) G_STMT_START { t = c * a + 128; d = ((t >> 8) + t) >> 8; } G_STMT_END
|
#define MULT(d,a,t) \
|
||||||
|
G_STMT_START { \
|
||||||
|
t = d * a + 128; \
|
||||||
|
d = ((t >> 8) + t) >> 8; \
|
||||||
|
} G_STMT_END
|
||||||
|
|
||||||
inline static void
|
inline static void
|
||||||
_cogl_premult_alpha_last (const guchar *src, guchar *dst)
|
_cogl_premult_alpha_last (guchar *dst)
|
||||||
{
|
{
|
||||||
guchar alpha = src[3];
|
guchar alpha = dst[3];
|
||||||
/* Using a separate temporary per component has given slightly better
|
/* Using a separate temporary per component has given slightly better
|
||||||
* code generation with GCC in the past; it shouldn't do any worse in
|
* code generation with GCC in the past; it shouldn't do any worse in
|
||||||
* any case.
|
* any case.
|
||||||
*/
|
*/
|
||||||
guint t1, t2, t3;
|
guint t1, t2, t3;
|
||||||
MULT(dst[0], src[0], alpha, t1);
|
MULT(dst[0], alpha, t1);
|
||||||
MULT(dst[1], src[1], alpha, t2);
|
MULT(dst[1], alpha, t2);
|
||||||
MULT(dst[2], src[2], alpha, t3);
|
MULT(dst[2], alpha, t3);
|
||||||
dst[3] = alpha;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
inline static void
|
inline static void
|
||||||
_cogl_premult_alpha_first (const guchar *src, guchar *dst)
|
_cogl_premult_alpha_first (guchar *dst)
|
||||||
{
|
{
|
||||||
guchar alpha = src[0];
|
guchar alpha = dst[0];
|
||||||
guint t1, t2, t3;
|
guint t1, t2, t3;
|
||||||
|
|
||||||
dst[0] = alpha;
|
MULT(dst[1], alpha, t1);
|
||||||
MULT(dst[1], src[1], alpha, t1);
|
MULT(dst[2], alpha, t2);
|
||||||
MULT(dst[2], src[2], alpha, t2);
|
MULT(dst[3], alpha, t3);
|
||||||
MULT(dst[3], src[3], alpha, t3);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#undef MULT
|
#undef MULT
|
||||||
@ -342,56 +342,39 @@ _cogl_bitmap_fallback_convert (const CoglBitmap *bmp,
|
|||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
_cogl_bitmap_fallback_unpremult (const CoglBitmap *bmp,
|
_cogl_bitmap_fallback_unpremult (CoglBitmap *bmp)
|
||||||
CoglBitmap *dst_bmp)
|
|
||||||
{
|
{
|
||||||
guchar *src;
|
guchar *p;
|
||||||
guchar *dst;
|
|
||||||
gint bpp;
|
|
||||||
gint x,y;
|
gint x,y;
|
||||||
|
|
||||||
/* Make sure format supported for un-premultiplication */
|
/* Make sure format supported for un-premultiplication */
|
||||||
if (!_cogl_bitmap_fallback_can_unpremult (bmp->format))
|
if (!_cogl_bitmap_fallback_can_unpremult (bmp->format))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
bpp = _cogl_get_format_bpp (bmp->format);
|
|
||||||
|
|
||||||
/* Initialize destination bitmap */
|
|
||||||
*dst_bmp = *bmp;
|
|
||||||
dst_bmp->format = (bmp->format & COGL_UNPREMULT_MASK);
|
|
||||||
|
|
||||||
/* Allocate a new buffer to hold converted data */
|
|
||||||
dst_bmp->data = g_malloc (sizeof(guchar)
|
|
||||||
* dst_bmp->height
|
|
||||||
* dst_bmp->rowstride);
|
|
||||||
|
|
||||||
for (y = 0; y < bmp->height; y++)
|
for (y = 0; y < bmp->height; y++)
|
||||||
{
|
{
|
||||||
src = (guchar*)bmp->data + y * bmp->rowstride;
|
p = (guchar*) bmp->data + y * bmp->rowstride;
|
||||||
dst = (guchar*)dst_bmp->data + y * dst_bmp->rowstride;
|
|
||||||
|
|
||||||
if (bmp->format & COGL_AFIRST_BIT)
|
if (bmp->format & COGL_AFIRST_BIT)
|
||||||
{
|
{
|
||||||
for (x = 0; x < bmp->width; x++)
|
for (x = 0; x < bmp->width; x++)
|
||||||
{
|
{
|
||||||
if (src[0] == 0)
|
if (p[0] == 0)
|
||||||
_cogl_unpremult_alpha_0 (src, dst);
|
_cogl_unpremult_alpha_0 (p);
|
||||||
else
|
else
|
||||||
_cogl_unpremult_alpha_first (src, dst);
|
_cogl_unpremult_alpha_first (p);
|
||||||
src += bpp;
|
p += 4;
|
||||||
dst += bpp;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
for (x = 0; x < bmp->width; x++)
|
for (x = 0; x < bmp->width; x++)
|
||||||
{
|
{
|
||||||
if (src[0] == 0)
|
if (p[3] == 0)
|
||||||
_cogl_unpremult_alpha_0 (src, dst);
|
_cogl_unpremult_alpha_0 (p);
|
||||||
else
|
else
|
||||||
_cogl_unpremult_alpha_last (src, dst);
|
_cogl_unpremult_alpha_last (p);
|
||||||
src += bpp;
|
p += 4;
|
||||||
dst += bpp;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -400,50 +383,33 @@ _cogl_bitmap_fallback_unpremult (const CoglBitmap *bmp,
|
|||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
_cogl_bitmap_fallback_premult (const CoglBitmap *bmp,
|
_cogl_bitmap_fallback_premult (CoglBitmap *bmp)
|
||||||
CoglBitmap *dst_bmp)
|
|
||||||
{
|
{
|
||||||
guchar *src;
|
guchar *p;
|
||||||
guchar *dst;
|
|
||||||
gint bpp;
|
|
||||||
gint x,y;
|
gint x,y;
|
||||||
|
|
||||||
/* Make sure format supported for un-premultiplication */
|
/* Make sure format supported for un-premultiplication */
|
||||||
if (!_cogl_bitmap_fallback_can_premult (bmp->format))
|
if (!_cogl_bitmap_fallback_can_premult (bmp->format))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
bpp = _cogl_get_format_bpp (bmp->format);
|
|
||||||
|
|
||||||
/* Initialize destination bitmap */
|
|
||||||
*dst_bmp = *bmp;
|
|
||||||
dst_bmp->format |= COGL_PREMULT_BIT;
|
|
||||||
|
|
||||||
/* Allocate a new buffer to hold converted data */
|
|
||||||
dst_bmp->data = g_malloc (sizeof(guchar)
|
|
||||||
* dst_bmp->height
|
|
||||||
* dst_bmp->rowstride);
|
|
||||||
|
|
||||||
for (y = 0; y < bmp->height; y++)
|
for (y = 0; y < bmp->height; y++)
|
||||||
{
|
{
|
||||||
src = (guchar*)bmp->data + y * bmp->rowstride;
|
p = (guchar*) bmp->data + y * bmp->rowstride;
|
||||||
dst = (guchar*)dst_bmp->data + y * dst_bmp->rowstride;
|
|
||||||
|
|
||||||
if (bmp->format & COGL_AFIRST_BIT)
|
if (bmp->format & COGL_AFIRST_BIT)
|
||||||
{
|
{
|
||||||
for (x = 0; x < bmp->width; x++)
|
for (x = 0; x < bmp->width; x++)
|
||||||
{
|
{
|
||||||
_cogl_premult_alpha_first (src, dst);
|
_cogl_premult_alpha_first (p);
|
||||||
src += bpp;
|
p += 4;
|
||||||
dst += bpp;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
for (x = 0; x < bmp->width; x++)
|
for (x = 0; x < bmp->width; x++)
|
||||||
{
|
{
|
||||||
_cogl_premult_alpha_last (src, dst);
|
_cogl_premult_alpha_last (p);
|
||||||
src += bpp;
|
p += 4;
|
||||||
dst += bpp;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -64,15 +64,13 @@ _cogl_bitmap_convert (const CoglBitmap *bmp,
|
|||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
_cogl_bitmap_unpremult (const CoglBitmap *bmp,
|
_cogl_bitmap_unpremult (CoglBitmap *dst_bmp)
|
||||||
CoglBitmap *dst_bmp)
|
|
||||||
{
|
{
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
_cogl_bitmap_premult (const CoglBitmap *bmp,
|
_cogl_bitmap_premult (CoglBitmap *dst_bmp)
|
||||||
CoglBitmap *dst_bmp)
|
|
||||||
{
|
{
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
@ -68,20 +68,16 @@ _cogl_bitmap_fallback_convert (const CoglBitmap *bmp,
|
|||||||
CoglPixelFormat dst_format);
|
CoglPixelFormat dst_format);
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
_cogl_bitmap_unpremult (const CoglBitmap *bmp,
|
_cogl_bitmap_unpremult (CoglBitmap *dst_bmp);
|
||||||
CoglBitmap *dst_bmp);
|
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
_cogl_bitmap_fallback_unpremult (const CoglBitmap *bmp,
|
_cogl_bitmap_fallback_unpremult (CoglBitmap *dst_bmp);
|
||||||
CoglBitmap *dst_bmp);
|
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
_cogl_bitmap_premult (const CoglBitmap *bmp,
|
_cogl_bitmap_premult (CoglBitmap *dst_bmp);
|
||||||
CoglBitmap *dst_bmp);
|
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
_cogl_bitmap_fallback_premult (const CoglBitmap *bmp,
|
_cogl_bitmap_fallback_premult (CoglBitmap *dst_bmp);
|
||||||
CoglBitmap *dst_bmp);
|
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
_cogl_bitmap_from_file (CoglBitmap *bmp,
|
_cogl_bitmap_from_file (CoglBitmap *bmp,
|
||||||
@ -93,7 +89,11 @@ _cogl_bitmap_fallback_from_file (CoglBitmap *bmp,
|
|||||||
const gchar *filename);
|
const gchar *filename);
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
_cogl_bitmap_convert_and_premult (const CoglBitmap *bmp,
|
_cogl_bitmap_convert_premult_status (CoglBitmap *bmp,
|
||||||
|
CoglPixelFormat dst_format);
|
||||||
|
|
||||||
|
gboolean
|
||||||
|
_cogl_bitmap_convert_format_and_premult (const CoglBitmap *bmp,
|
||||||
CoglBitmap *dst_bmp,
|
CoglBitmap *dst_bmp,
|
||||||
CoglPixelFormat dst_format);
|
CoglPixelFormat dst_format);
|
||||||
|
|
||||||
|
@ -61,83 +61,57 @@ _cogl_get_format_bpp (CoglPixelFormat format)
|
|||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
_cogl_bitmap_convert_and_premult (const CoglBitmap *bmp,
|
_cogl_bitmap_convert_premult_status (CoglBitmap *bmp,
|
||||||
|
CoglPixelFormat dst_format)
|
||||||
|
{
|
||||||
|
/* Do we need to unpremultiply? */
|
||||||
|
if ((bmp->format & COGL_PREMULT_BIT) > 0 &&
|
||||||
|
(dst_format & COGL_PREMULT_BIT) == 0)
|
||||||
|
/* Try unpremultiplying using imaging library */
|
||||||
|
return (_cogl_bitmap_unpremult (bmp)
|
||||||
|
/* ... or try fallback */
|
||||||
|
|| _cogl_bitmap_fallback_unpremult (bmp));
|
||||||
|
|
||||||
|
/* Do we need to premultiply? */
|
||||||
|
if ((bmp->format & COGL_PREMULT_BIT) == 0 &&
|
||||||
|
(dst_format & COGL_PREMULT_BIT) > 0)
|
||||||
|
/* Try premultiplying using imaging library */
|
||||||
|
return (_cogl_bitmap_premult (bmp)
|
||||||
|
/* ... or try fallback */
|
||||||
|
|| _cogl_bitmap_fallback_premult (bmp));
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
gboolean
|
||||||
|
_cogl_bitmap_convert_format_and_premult (const CoglBitmap *bmp,
|
||||||
CoglBitmap *dst_bmp,
|
CoglBitmap *dst_bmp,
|
||||||
CoglPixelFormat dst_format)
|
CoglPixelFormat dst_format)
|
||||||
{
|
{
|
||||||
CoglBitmap tmp_bmp = *bmp;
|
|
||||||
CoglBitmap new_bmp = *bmp;
|
|
||||||
gboolean new_bmp_owner = FALSE;
|
|
||||||
|
|
||||||
/* Is base format different (not considering premult status)? */
|
/* Is base format different (not considering premult status)? */
|
||||||
if ((bmp->format & COGL_UNPREMULT_MASK) !=
|
if ((bmp->format & COGL_UNPREMULT_MASK) !=
|
||||||
(dst_format & COGL_UNPREMULT_MASK))
|
(dst_format & COGL_UNPREMULT_MASK))
|
||||||
{
|
{
|
||||||
/* Try converting using imaging library */
|
/* Try converting using imaging library */
|
||||||
if (!_cogl_bitmap_convert (&new_bmp, &tmp_bmp, dst_format))
|
if (!_cogl_bitmap_convert (bmp, dst_bmp, dst_format))
|
||||||
{
|
{
|
||||||
/* ... or try fallback */
|
/* ... or try fallback */
|
||||||
if (!_cogl_bitmap_fallback_convert (&new_bmp, &tmp_bmp, dst_format))
|
if (!_cogl_bitmap_fallback_convert (bmp, dst_bmp, dst_format))
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Update bitmap with new data */
|
|
||||||
new_bmp = tmp_bmp;
|
|
||||||
new_bmp_owner = TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Do we need to unpremultiply */
|
|
||||||
if ((bmp->format & COGL_PREMULT_BIT) > 0 &&
|
|
||||||
(dst_format & COGL_PREMULT_BIT) == 0)
|
|
||||||
{
|
|
||||||
/* Try unpremultiplying using imaging library */
|
|
||||||
if (!_cogl_bitmap_unpremult (&new_bmp, &tmp_bmp))
|
|
||||||
{
|
|
||||||
/* ... or try fallback */
|
|
||||||
if (!_cogl_bitmap_fallback_unpremult (&new_bmp, &tmp_bmp))
|
|
||||||
{
|
|
||||||
if (new_bmp_owner)
|
|
||||||
g_free (new_bmp.data);
|
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
/* Update bitmap with new data */
|
{
|
||||||
if (new_bmp_owner)
|
/* Copy the bitmap so that we can premultiply in-place */
|
||||||
g_free (new_bmp.data);
|
*dst_bmp = *bmp;
|
||||||
|
dst_bmp->data = g_memdup (bmp->data, bmp->rowstride * bmp->height);
|
||||||
new_bmp = tmp_bmp;
|
|
||||||
new_bmp_owner = TRUE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Do we need to premultiply */
|
if (!_cogl_bitmap_convert_premult_status (dst_bmp, dst_format))
|
||||||
if ((bmp->format & COGL_PREMULT_BIT) == 0 &&
|
|
||||||
(dst_format & COGL_PREMULT_BIT) > 0)
|
|
||||||
{
|
{
|
||||||
/* Try premultiplying using imaging library */
|
g_free (dst_bmp->data);
|
||||||
if (!_cogl_bitmap_premult (&new_bmp, &tmp_bmp))
|
|
||||||
{
|
|
||||||
/* ... or try fallback */
|
|
||||||
if (!_cogl_bitmap_fallback_premult (&new_bmp, &tmp_bmp))
|
|
||||||
{
|
|
||||||
if (new_bmp_owner)
|
|
||||||
g_free (new_bmp.data);
|
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/* Update bitmap with new data */
|
|
||||||
if (new_bmp_owner)
|
|
||||||
g_free (new_bmp.data);
|
|
||||||
|
|
||||||
new_bmp = tmp_bmp;
|
|
||||||
new_bmp_owner = TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Output new bitmap info */
|
|
||||||
*dst_bmp = new_bmp;
|
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
@ -1433,7 +1433,7 @@ _cogl_texture_2d_sliced_set_region (CoglTexture *tex,
|
|||||||
if (closest_format != format)
|
if (closest_format != format)
|
||||||
{
|
{
|
||||||
/* Convert to required format */
|
/* Convert to required format */
|
||||||
success = _cogl_bitmap_convert_and_premult (&source_bmp,
|
success = _cogl_bitmap_convert_format_and_premult (&source_bmp,
|
||||||
&temp_bmp,
|
&temp_bmp,
|
||||||
closest_format);
|
closest_format);
|
||||||
|
|
||||||
@ -1635,7 +1635,7 @@ _cogl_texture_2d_sliced_get_data (CoglTexture *tex,
|
|||||||
if (closest_format != format)
|
if (closest_format != format)
|
||||||
{
|
{
|
||||||
/* Convert to requested format */
|
/* Convert to requested format */
|
||||||
success = _cogl_bitmap_convert_and_premult (&target_bmp,
|
success = _cogl_bitmap_convert_format_and_premult (&target_bmp,
|
||||||
&new_bmp,
|
&new_bmp,
|
||||||
format);
|
format);
|
||||||
|
|
||||||
|
@ -466,7 +466,7 @@ _cogl_texture_2d_set_region (CoglTexture *tex,
|
|||||||
if (closest_format != format)
|
if (closest_format != format)
|
||||||
{
|
{
|
||||||
/* Convert to required format */
|
/* Convert to required format */
|
||||||
success = _cogl_bitmap_convert_and_premult (&source_bmp,
|
success = _cogl_bitmap_convert_format_and_premult (&source_bmp,
|
||||||
&temp_bmp,
|
&temp_bmp,
|
||||||
closest_format);
|
closest_format);
|
||||||
|
|
||||||
@ -570,7 +570,7 @@ _cogl_texture_2d_get_data (CoglTexture *tex,
|
|||||||
if (closest_format != format)
|
if (closest_format != format)
|
||||||
{
|
{
|
||||||
/* Convert to requested format */
|
/* Convert to requested format */
|
||||||
success = _cogl_bitmap_convert_and_premult (&target_bmp,
|
success = _cogl_bitmap_convert_format_and_premult (&target_bmp,
|
||||||
&new_bmp,
|
&new_bmp,
|
||||||
format);
|
format);
|
||||||
|
|
||||||
|
@ -193,7 +193,7 @@ _cogl_texture_upload_data_convert (CoglTextureUploadData *data,
|
|||||||
/* Convert to internal format */
|
/* Convert to internal format */
|
||||||
if (internal_format != data->bitmap.format)
|
if (internal_format != data->bitmap.format)
|
||||||
{
|
{
|
||||||
success = _cogl_bitmap_convert_and_premult (&data->bitmap,
|
success = _cogl_bitmap_convert_format_and_premult (&data->bitmap,
|
||||||
&new_bitmap,
|
&new_bitmap,
|
||||||
internal_format);
|
internal_format);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user