diff options
author | Gareth Hughes <[email protected]> | 2001-02-03 08:41:03 +0000 |
---|---|---|
committer | Gareth Hughes <[email protected]> | 2001-02-03 08:41:03 +0000 |
commit | fe69cb4b9bff800b6078ea7da5ea18bab05678d8 (patch) | |
tree | 84f7fdddaae6b3c8be1f78ffdd9e3f7ccaa4958f /src/mesa/math/m_debug.h | |
parent | 6d689e8a69cdd89db181691f5bc21b71518398b0 (diff) |
Some more work on interal debugging, timing routines for things that
will have implementations in assembly code. To come: texture image
conversions, more of internal T&L pipeline and so on.
Diffstat (limited to 'src/mesa/math/m_debug.h')
-rw-r--r-- | src/mesa/math/m_debug.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/mesa/math/m_debug.h b/src/mesa/math/m_debug.h new file mode 100644 index 00000000000..de94b21f2df --- /dev/null +++ b/src/mesa/math/m_debug.h @@ -0,0 +1,37 @@ +/* $Id: m_debug.h,v 1.1 2001/02/03 08:41:04 gareth Exp $ */ + +/* + * Mesa 3-D graphics library + * Version: 3.5 + * + * Copyright (C) 1999 Brian Paul All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN + * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * Author: + * Gareth Hughes <[email protected]> + */ + +#ifndef __M_DEBUG_H__ +#define __M_DEBUG_H__ + +extern void _math_test_all_transform_functions( char *description ); +extern void _math_test_all_normal_transform_functions( char *description ); +extern void _math_test_all_vertex_functions( char *description ); + +#endif |