void DrawStringLargeWithShadow(const Position & p, const std::string & text, const GLfloat * rgba) { DrawStringLarge(p, text, rgba); }
void DrawStringLargeWithShadow(const Position & p, const std::string & text, const GLfloat * rgba) { const GLfloat black[4] = {0.0f, 0.0f, 0.0f, 1.0f}; DrawStringLarge(p + Position(1,1), text, black); DrawStringLarge(p, text, rgba); }