Mesa (master): radeon: use proper macro

Maciej Cencora osiris at kemper.freedesktop.org
Sun Aug 23 19:31:46 UTC 2009


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

Author: Maciej Cencora <m.cencora at gmail.com>
Date:   Sun Aug 23 21:11:13 2009 +0200

radeon: use proper macro

---

 src/mesa/drivers/dri/radeon/radeon_queryobj.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/src/mesa/drivers/dri/radeon/radeon_queryobj.c b/src/mesa/drivers/dri/radeon/radeon_queryobj.c
index e508f5f..7eef4fa 100644
--- a/src/mesa/drivers/dri/radeon/radeon_queryobj.c
+++ b/src/mesa/drivers/dri/radeon/radeon_queryobj.c
@@ -32,8 +32,6 @@
 
 #define DDEBUG 0
 
-#define PAGE_SIZE 4096
-
 static int radeonQueryIsFlushed(GLcontext *ctx, struct gl_query_object *q)
 {
 	radeonContextPtr radeon = RADEON_CONTEXT(ctx);
@@ -127,7 +125,7 @@ static void radeonBeginQuery(GLcontext *ctx, struct gl_query_object *q)
 		radeon->dma.flush(radeon->glCtx);
 
 	if (!query->bo) {
-		query->bo = radeon_bo_open(radeon->radeonScreen->bom, 0, PAGE_SIZE, PAGE_SIZE, RADEON_GEM_DOMAIN_GTT, 0);
+		query->bo = radeon_bo_open(radeon->radeonScreen->bom, 0, RADEON_QUERY_PAGE_SIZE, RADEON_QUERY_PAGE_SIZE, RADEON_GEM_DOMAIN_GTT, 0);
 	}
 	query->curr_offset = 0;
 




More information about the mesa-commit mailing list