projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da428c7
)
[intel] Fix type of some more flags variables for uint64_t flags.
author
Eric Anholt
<eric@anholt.net>
Wed, 13 Feb 2008 00:01:26 +0000
(16:01 -0800)
committer
Eric Anholt
<eric@anholt.net>
Wed, 13 Feb 2008 00:06:02 +0000
(16:06 -0800)
Harmless since we don't yet have any bits above 31 for flags.
src/mesa/drivers/dri/intel/intel_bufmgr_ttm.c
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/intel/intel_bufmgr_ttm.c
b/src/mesa/drivers/dri/intel/intel_bufmgr_ttm.c
index ae29949bbe7a9cf018c37244ce3ac303e2561415..3953525c3e98ed71f88d7dfa791640f3431d0534 100644
(file)
--- a/
src/mesa/drivers/dri/intel/intel_bufmgr_ttm.c
+++ b/
src/mesa/drivers/dri/intel/intel_bufmgr_ttm.c
@@
-344,7
+344,8
@@
dri_ttm_alloc(dri_bufmgr *bufmgr, const char *name,
dri_bo_ttm *ttm_buf;
unsigned int pageSize = getpagesize();
int ret;
- unsigned int flags, hint;
+ uint64_t flags;
+ unsigned int hint;
ttm_buf = malloc(sizeof(*ttm_buf));
if (!ttm_buf)
@@
-506,7
+507,7
@@
dri_ttm_bo_map(dri_bo *buf, GLboolean write_enable)
{
dri_bufmgr_ttm *bufmgr_ttm;
dri_bo_ttm *ttm_buf = (dri_bo_ttm *)buf;
- u
nsigned in
t flags;
+ u
int64_
t flags;
int ret;
bufmgr_ttm = (dri_bufmgr_ttm *)buf->bufmgr;