diff options
author | Christoph Bumiller <[email protected]> | 2010-04-10 19:07:28 +0200 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2010-04-10 19:08:45 +0200 |
commit | 51430c21ffd212d801f129d625f3ae8713372f68 (patch) | |
tree | 30ffe4abc82308cc249692b039a652adb38425bf /src/gallium/drivers/nv50/nv50_resource.h | |
parent | cd499e76123f075c3201058f5fcda66425c4e5a8 (diff) |
nv50: plug in miptree resource vtbl
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_resource.h')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_resource.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv50/nv50_resource.h b/src/gallium/drivers/nv50/nv50_resource.h index 963a1100ce8..6cf7662124b 100644 --- a/src/gallium/drivers/nv50/nv50_resource.h +++ b/src/gallium/drivers/nv50/nv50_resource.h @@ -16,7 +16,7 @@ struct nouveau_bo; */ struct nv50_resource { struct pipe_resource base; - struct u_resource_vtbl *vtbl; + const struct u_resource_vtbl *vtbl; struct nouveau_bo *bo; }; |