summaryrefslogtreecommitdiffstats
path: root/gcbv
diff options
context:
space:
mode:
Diffstat (limited to 'gcbv')
-rw-r--r--gcbv/mirror/gcblit.c2
-rw-r--r--gcbv/mirror/gcbuffer.c2
-rw-r--r--gcbv/mirror/gcbv.c16
-rw-r--r--gcbv/mirror/gcfill.c2
-rw-r--r--gcbv/mirror/gcfilter.c2
-rw-r--r--gcbv/mirror/gcmap.c2
-rw-r--r--gcbv/mirror/gcparser.c2
7 files changed, 14 insertions, 14 deletions
diff --git a/gcbv/mirror/gcblit.c b/gcbv/mirror/gcblit.c
index bd63331..46a8fd9 100644
--- a/gcbv/mirror/gcblit.c
+++ b/gcbv/mirror/gcblit.c
@@ -38,7 +38,7 @@
#define GCZONE_SURF (1 << 1)
#define GCZONE_BLIT (1 << 3)
-GCDBG_FILTERDEF(gcblit, GCZONE_NONE,
+GCDBG_FILTERDEF(blit, GCZONE_NONE,
"blend",
"surf",
"blit")
diff --git a/gcbv/mirror/gcbuffer.c b/gcbv/mirror/gcbuffer.c
index 2f0477a..7c77d4a 100644
--- a/gcbv/mirror/gcbuffer.c
+++ b/gcbv/mirror/gcbuffer.c
@@ -39,7 +39,7 @@
#define GCZONE_FIXUP_ALLOC (1 << 2)
#define GCZONE_FIXUP (1 << 3)
-GCDBG_FILTERDEF(gcbuffer, GCZONE_NONE,
+GCDBG_FILTERDEF(buffer, GCZONE_NONE,
"batchalloc",
"bufferalloc"
"fixupalloc",
diff --git a/gcbv/mirror/gcbv.c b/gcbv/mirror/gcbv.c
index 003da68..a6dd389 100644
--- a/gcbv/mirror/gcbv.c
+++ b/gcbv/mirror/gcbv.c
@@ -45,7 +45,7 @@
#define GCZONE_CALLBACK (1 << 8)
#define GCZONE_TEMP (1 << 9)
-GCDBG_FILTERDEF(gcbv, GCZONE_NONE,
+GCDBG_FILTERDEF(bv, GCZONE_NONE,
"mapping",
"buffer",
"dest",
@@ -633,13 +633,13 @@ void bv_init(void)
struct gcicaps gcicaps;
unsigned i, j;
- GCDBG_REGISTER(gcbv);
- GCDBG_REGISTER(gcparser);
- GCDBG_REGISTER(gcmap);
- GCDBG_REGISTER(gcbuffer);
- GCDBG_REGISTER(gcfill);
- GCDBG_REGISTER(gcblit);
- GCDBG_REGISTER(gcfilter);
+ GCDBG_REGISTER(bv);
+ GCDBG_REGISTER(parser);
+ GCDBG_REGISTER(map);
+ GCDBG_REGISTER(buffer);
+ GCDBG_REGISTER(fill);
+ GCDBG_REGISTER(blit);
+ GCDBG_REGISTER(filter);
GCLOCK_INIT(&gccontext->batchlock);
GCLOCK_INIT(&gccontext->bufferlock);
diff --git a/gcbv/mirror/gcfill.c b/gcbv/mirror/gcfill.c
index 7d26a7d..458be75 100644
--- a/gcbv/mirror/gcfill.c
+++ b/gcbv/mirror/gcfill.c
@@ -37,7 +37,7 @@
#define GCZONE_COLOR (1 << 0)
#define GCZONE_FILL (1 << 1)
-GCDBG_FILTERDEF(gcfill, GCZONE_NONE,
+GCDBG_FILTERDEF(fill, GCZONE_NONE,
"color",
"fill")
diff --git a/gcbv/mirror/gcfilter.c b/gcbv/mirror/gcfilter.c
index 897930b..25b4ce0 100644
--- a/gcbv/mirror/gcfilter.c
+++ b/gcbv/mirror/gcfilter.c
@@ -42,7 +42,7 @@
#define GCZONE_DEST (1 << 5)
#define GCZONE_SURF (1 << 6)
-GCDBG_FILTERDEF(gcfilter, GCZONE_NONE,
+GCDBG_FILTERDEF(filter, GCZONE_NONE,
"kernel",
"filter",
"blend",
diff --git a/gcbv/mirror/gcmap.c b/gcbv/mirror/gcmap.c
index 89953de..3f2b3f3 100644
--- a/gcbv/mirror/gcmap.c
+++ b/gcbv/mirror/gcmap.c
@@ -36,7 +36,7 @@
#define GCZONE_ALL (~0U)
#define GCZONE_MAPPING (1 << 0)
-GCDBG_FILTERDEF(gcmap, GCZONE_NONE,
+GCDBG_FILTERDEF(map, GCZONE_NONE,
"mapping")
diff --git a/gcbv/mirror/gcparser.c b/gcbv/mirror/gcparser.c
index 7de33e7..0091431 100644
--- a/gcbv/mirror/gcparser.c
+++ b/gcbv/mirror/gcparser.c
@@ -42,7 +42,7 @@
#define GCZONE_SRC (1 << 5)
#define GCZONE_SCALING (1 << 6)
-GCDBG_FILTERDEF(gcparser, GCZONE_NONE,
+GCDBG_FILTERDEF(parser, GCZONE_NONE,
"format",
"formatverbose",
"blend",