st/mesa: fix st_NewPerfMonitor() declaration

Was missing the context parameter.  Fixes MSVC warning.

Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
This commit is contained in:
Brian Paul 2015-05-05 15:42:34 -06:00
parent 0beaf1cd9a
commit 062e2b06b2
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ reset_perf_monitor(struct st_perf_monitor_object *stm,
}
static struct gl_perf_monitor_object *
st_NewPerfMonitor()
st_NewPerfMonitor(struct gl_context *ctx)
{
struct st_perf_monitor_object *stq = ST_CALLOC_STRUCT(st_perf_monitor_object);
if (stq) {