else
{
source_float_buf_alloc = babl_malloc (sizeof (float) * n *
- BABL (babl->fish.source)->format.model->components);
+ (BABL (babl->fish.source)->format.model->components));
source_float_buf = source_float_buf_alloc;
source_image = babl_image_from_linear (
);
}
- if (babl_model_is ((void*)babl->fish.source->format.model, "RGBA"))
+ if (babl_model_is ((void*)babl->fish.source->format.model, "RGBA") && 0)
{
rgba_float_buf = source_float_buf;
rgba_image = babl_image_from_linear (
const void *destination)
{
void *data = (void*)destination;
+
babl_list_each (BABL (source)->type.from_list, match_conversion, &data);
if (data != (void*)destination) /* didn't change */
return data;