glsl/compiler: Move the error_no_memory stub to standalone_scaffolding.cpp

This commit is contained in:
Jason Ekstrand 2015-04-29 14:30:22 -07:00
parent b20d9f5643
commit 2c585a722d

View file

@ -35,6 +35,12 @@
#include "util/ralloc.h"
#include "util/strtod.h"
extern "C" void
_mesa_error_no_memory(const char *caller)
{
fprintf(stderr, "Mesa error: out of memory in %s", caller);
}
void
_mesa_warning(struct gl_context *ctx, const char *fmt, ...)
{