Explorar el Código

Updated bug report info in _mesa_problem()

tags/mesa_3_5
Brian Paul hace 24 años
padre
commit
bb0830da9e
Se han modificado 1 ficheros con 6 adiciones y 2 borrados
  1. 6
    2
      src/mesa/main/context.c

+ 6
- 2
src/mesa/main/context.c Ver fichero

@@ -1,4 +1,4 @@
/* $Id: context.c,v 1.131 2001/03/28 17:20:20 brianp Exp $ */
/* $Id: context.c,v 1.132 2001/04/04 13:38:51 brianp Exp $ */

/*
* Mesa 3-D graphics library
@@ -1885,7 +1885,11 @@ _mesa_get_dispatch(GLcontext *ctx)
void _mesa_problem( const GLcontext *ctx, const char *s )
{
fprintf( stderr, "Mesa implementation error: %s\n", s );
fprintf( stderr, "Report to Mesa bug database at www.mesa3d.org\n" );
#ifdef XF86DRI
fprintf( stderr, "Please report to the DRI bug database at dri.sourceforge.net\n");
#else
fprintf( stderr, "Please report to the Mesa bug database at www.mesa3d.org\n" );
#endif
(void) ctx;
}


Cargando…
Cancelar
Guardar