diff options
author | davem69 <davem69> | 2001-06-06 11:46:04 +0000 |
---|---|---|
committer | davem69 <davem69> | 2001-06-06 11:46:04 +0000 |
commit | 6f365c21d796310a9ea70d8420e6879eb5abb6ae (patch) | |
tree | a17d087d3affc09de3caf515b5a05b063ad72dfa /src/mesa/sparc/sparc_matrix.h | |
parent | 775355a88a0927e2e3a855036c26950397a61d7b (diff) |
SPARC normal tnl optimizations.
Diffstat (limited to 'src/mesa/sparc/sparc_matrix.h')
-rw-r--r-- | src/mesa/sparc/sparc_matrix.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mesa/sparc/sparc_matrix.h b/src/mesa/sparc/sparc_matrix.h index 85beef9d927..4fe09e83eaf 100644 --- a/src/mesa/sparc/sparc_matrix.h +++ b/src/mesa/sparc/sparc_matrix.h @@ -1,4 +1,4 @@ -/* $Id: sparc_matrix.h,v 1.2 2001/06/05 23:54:01 davem69 Exp $ */ +/* $Id: sparc_matrix.h,v 1.3 2001/06/06 11:46:04 davem69 Exp $ */ #ifndef _SPARC_MATRIX_H #define _SPARC_MATRIX_H @@ -146,6 +146,11 @@ ldd [BASE + (12 * 0x4)], M12; \ ld [BASE + (14 * 0x4)], M14 +#define LDMATRIX_0_5_10(BASE) \ + ld [BASE + ( 0 * 0x4)], M0; \ + ld [BASE + ( 5 * 0x4)], M5; \ + ld [BASE + (10 * 0x4)], M10; \ + #define LDMATRIX_0_5_10_12_13_14(BASE) \ ld [BASE + ( 0 * 0x4)], M0; \ ld [BASE + ( 5 * 0x4)], M5; \ |