Fix unused parameter warning in Contrib/stb_truetype.h

This commit is contained in:
Ben Hymers 2016-03-14 09:32:05 +00:00
parent e344fe8295
commit 632ae709d7

View File

@ -2064,7 +2064,7 @@ static void stbtt__fill_active_edges_new(float *scanline, float *scanline_fill,
} }
// directly AA rasterize edges w/o supersampling // directly AA rasterize edges w/o supersampling
static void stbtt__rasterize_sorted_edges(stbtt__bitmap *result, stbtt__edge *e, int n, int vsubsample, int off_x, int off_y, void *userdata) static void stbtt__rasterize_sorted_edges(stbtt__bitmap *result, stbtt__edge *e, int n, int /*vsubsample*/, int off_x, int off_y, void *userdata)
{ {
stbtt__hheap hh = { 0, 0, 0 }; stbtt__hheap hh = { 0, 0, 0 };
stbtt__active_edge *active = NULL; stbtt__active_edge *active = NULL;