Mesa (master): auxiliary/util: Add SM3 meta-cap list.

Corbin Simpson csimpson at kemper.freedesktop.org
Mon Jul 5 21:59:38 UTC 2010


Module: Mesa
Branch: master
Commit: e54164b4e3890e3eddc4ae976e3cc2f1fa2f441b
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=e54164b4e3890e3eddc4ae976e3cc2f1fa2f441b

Author: Corbin Simpson <MostAwesomeDude at gmail.com>
Date:   Mon Jul  5 14:59:12 2010 -0700

auxiliary/util: Add SM3 meta-cap list.

---

 src/gallium/auxiliary/util/u_caps.c |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/src/gallium/auxiliary/util/u_caps.c b/src/gallium/auxiliary/util/u_caps.c
index 294ee37..94d5bd3 100644
--- a/src/gallium/auxiliary/util/u_caps.c
+++ b/src/gallium/auxiliary/util/u_caps.c
@@ -186,6 +186,22 @@ static unsigned caps_opengl_2_1[] = {
 /* OpenGL 3.0 */
 /* UTIL_CHECK_INT(MAX_RENDER_TARGETS, 8), */
 
+/* Shader Model 3 */
+static unsigned caps_sm3[] = {
+    UTIL_CHECK_INT(MAX_FS_INSTRUCTIONS, 512),
+    UTIL_CHECK_INT(MAX_FS_INPUTS, 10),
+    UTIL_CHECK_INT(MAX_FS_TEMPS, 32),
+    UTIL_CHECK_INT(MAX_FS_ADDRS, 1),
+    UTIL_CHECK_INT(MAX_FS_CONSTS, 224),
+
+    UTIL_CHECK_INT(MAX_VS_INSTRUCTIONS, 512),
+    UTIL_CHECK_INT(MAX_VS_INPUTS, 16),
+    UTIL_CHECK_INT(MAX_VS_TEMPS, 32),
+    UTIL_CHECK_INT(MAX_VS_ADDRS, 2),
+    UTIL_CHECK_INT(MAX_VS_CONSTS, 256),
+
+    UTIL_CHECK_TERMINATE
+};
 
 /**
  * Demo function which checks against theoretical caps needed for different APIs.
@@ -203,6 +219,7 @@ void util_caps_demo_print(struct pipe_screen *screen)
       {"DX 11", caps_dx_11},
       {"OpenGL 2.1", caps_opengl_2_1},
 /*    {"OpenGL 3.0", caps_opengl_3_0},*/
+      {"SM3", caps_sm3},
       {NULL, NULL}
    };
    int i, out = 0;




More information about the mesa-commit mailing list