summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2008-04-25 13:51:02 -0700
committerEric Anholt <eric@anholt.net>2008-04-25 13:51:02 -0700
commitfb58194f221f89014f9de62d0f689a439e0e800d (patch)
treed0d8a4d875e6bdaecaab4f2d1d3a52e76d7c7307
parentb3d32c0b3ef8ff4896aef154d8162efe904ed460 (diff)
Add a script to parse apps versus driver list and report what's missing.
-rw-r--r--apps/blender-2.45 (renamed from blender-2.45)0
-rw-r--r--apps/et-2.60 (renamed from et-2.60)0
-rw-r--r--apps/foobillard-2.9 (renamed from foobillard-2.9)0
-rw-r--r--apps/nwn (renamed from nwn)0
-rw-r--r--apps/openarena-0.7.0 (renamed from openarena-0.7.0)0
-rw-r--r--apps/ppracer-0.5a3 (renamed from ppracer-0.5a3)0
-rw-r--r--apps/torcs-1.3.0 (renamed from torcs-1.3.0)0
-rw-r--r--apps/ut2004 (renamed from ut2004)0
-rw-r--r--apps/wined3d-0.9.58 (renamed from wined3d-0.9.58)0
-rw-r--r--apps/winegl-0.9.58 (renamed from winegl-0.9.58)0
-rw-r--r--apps/wow-2.4.0 (renamed from wow-2.4.0)0
-rwxr-xr-xscripts/driver-lack21
12 files changed, 21 insertions, 0 deletions
diff --git a/blender-2.45 b/apps/blender-2.45
index b431518..b431518 100644
--- a/blender-2.45
+++ b/apps/blender-2.45
diff --git a/et-2.60 b/apps/et-2.60
index 6b04424..6b04424 100644
--- a/et-2.60
+++ b/apps/et-2.60
diff --git a/foobillard-2.9 b/apps/foobillard-2.9
index 67c6cf6..67c6cf6 100644
--- a/foobillard-2.9
+++ b/apps/foobillard-2.9
diff --git a/nwn b/apps/nwn
index 20b0ca9..20b0ca9 100644
--- a/nwn
+++ b/apps/nwn
diff --git a/openarena-0.7.0 b/apps/openarena-0.7.0
index 3610816..3610816 100644
--- a/openarena-0.7.0
+++ b/apps/openarena-0.7.0
diff --git a/ppracer-0.5a3 b/apps/ppracer-0.5a3
index d66e990..d66e990 100644
--- a/ppracer-0.5a3
+++ b/apps/ppracer-0.5a3
diff --git a/torcs-1.3.0 b/apps/torcs-1.3.0
index 11d5d1e..11d5d1e 100644
--- a/torcs-1.3.0
+++ b/apps/torcs-1.3.0
diff --git a/ut2004 b/apps/ut2004
index f6b2f51..f6b2f51 100644
--- a/ut2004
+++ b/apps/ut2004
diff --git a/wined3d-0.9.58 b/apps/wined3d-0.9.58
index 0bf35f9..0bf35f9 100644
--- a/wined3d-0.9.58
+++ b/apps/wined3d-0.9.58
diff --git a/winegl-0.9.58 b/apps/winegl-0.9.58
index b32b741..b32b741 100644
--- a/winegl-0.9.58
+++ b/apps/winegl-0.9.58
diff --git a/wow-2.4.0 b/apps/wow-2.4.0
index 0b0d6e7..0b0d6e7 100644
--- a/wow-2.4.0
+++ b/apps/wow-2.4.0
diff --git a/scripts/driver-lack b/scripts/driver-lack
new file mode 100755
index 0000000..e0d85dc
--- /dev/null
+++ b/scripts/driver-lack
@@ -0,0 +1,21 @@
+tempfile=`mktemp -t /tmp`
+
+grep . $@ | sed 's|:| |g' | awk '
+{
+ if (driver_name == "") {
+ driver_name = $1;
+ }
+ if (driver_name == $1) {
+ extensions_supported[$2] = 1;
+ } else {
+ if (!extensions_supported[$2]) {
+ extensions_unsupported[$2]++;
+ }
+ }
+}
+END {
+ for (i in extensions_unsupported) {
+ print i ": " extensions_unsupported[i];
+ }
+}
+' | sort -nk 2 \ No newline at end of file