diff options
author | Brian Paul <[email protected]> | 2008-07-09 15:51:18 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-07-09 15:51:18 -0600 |
commit | eb9efc6ad5544b8c643f81c03fcc09438aa0316c (patch) | |
tree | 6332a34e7fdad2e87017027aabbb0d092f277d18 /src/mesa | |
parent | e3b13dba4df0522cce11c55c34a9e3e7d0f3a32c (diff) |
mesa: disable fprintf() error
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/common/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/common/utils.c b/src/mesa/drivers/dri/common/utils.c index 3cf2146dceb..67cffead00f 100644 --- a/src/mesa/drivers/dri/common/utils.c +++ b/src/mesa/drivers/dri/common/utils.c @@ -310,8 +310,10 @@ void driInitSingleExtension( GLcontext * ctx, */ offset = _glapi_add_dispatch( functions, parameter_signature ); if (offset == -1) { +#if 0 /* this causes noise with egl */ fprintf(stderr, "DISPATCH ERROR! _glapi_add_dispatch failed " "to add %s!\n", functions[0]); +#endif } else if (ext->functions[i].remap_index != -1) { driDispatchRemapTable[ ext->functions[i].remap_index ] = |