rg_etc: Correct ifdef to keep function available for debug build

In the nightly builds we have debug enabled and this spotted the case where
rg_etc1_solution_coordinates_block_colors_get is actually still used:

lib/eet/.libs/libeet.so: undefined reference to `rg_etc1_solution_coordinates_block_colors_get'

Showed only after we switched back from release to dev mode.

@fix
This commit is contained in:
Stefan Schmidt 2015-05-11 14:44:57 +02:00
parent 9e0a00d768
commit d1b414a6ec
1 changed files with 1 additions and 1 deletions

View File

@ -1592,7 +1592,7 @@ rg_etc1_solution_coordinates_get_scaled_color(color_quad_u8 *color, const Etc1_S
rg_etc1_color_quad_u8_init(color, br, bg, bb, 255);
}
#if 0
#ifdef RG_ETC1_BUILD_DEBUG
static inline void
rg_etc1_solution_coordinates_block_colors_get(const Etc1_Solution_Coordinates *coords, color_quad_u8 colors[4])
{