style cleanup

This commit is contained in:
Campbell Barton 2012-06-16 16:57:16 +00:00
parent cf6aefcce6
commit 42d0e34fac
3 changed files with 402 additions and 403 deletions

@ -64,7 +64,8 @@ static RenderEngineType internal_render_type = {
NULL, NULL,
"BLENDER_RENDER", N_("Blender Render"), RE_INTERNAL,
NULL, NULL, NULL, NULL,
{NULL, NULL, NULL}};
{NULL, NULL, NULL}
};
#ifdef WITH_GAMEENGINE
@ -72,7 +73,8 @@ static RenderEngineType internal_game_type = {
NULL, NULL,
"BLENDER_GAME", N_("Blender Game"), RE_INTERNAL | RE_GAME,
NULL, NULL, NULL, NULL,
{NULL, NULL, NULL}};
{NULL, NULL, NULL}
};
#endif

@ -398,6 +398,3 @@ void addalphaAddFloat(float dest[4], const float source[4])
/* ---------------------------------------------------------------------------- */
/* eof pixelblending.c */