Merge pull request #25 from JayFoxRox/fix-warning

pgraph_apply_anti_aliasing_factor shouldn't return anything
This commit is contained in:
espes 2015-08-08 07:06:18 -07:00
commit 9c69879288
1 changed files with 4 additions and 3 deletions

View File

@ -3023,9 +3023,10 @@ static ShaderBinding* generate_shaders(const ShaderState state)
return ret;
}
static unsigned int pgraph_apply_anti_aliasing_factor(PGRAPHState *pg,
unsigned int *width,
unsigned int *height) {
static void pgraph_apply_anti_aliasing_factor(PGRAPHState *pg,
unsigned int *width,
unsigned int *height)
{
switch (pg->surface_shape.anti_aliasing) {
case NV097_SET_SURFACE_FORMAT_ANTI_ALIASING_CENTER_1:
break;