diff options
author | Brian Paul <[email protected]> | 2005-07-05 14:13:42 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-07-05 14:13:42 +0000 |
commit | 4cf6718725c7cf3bfb728118a8b14f8cf206c701 (patch) | |
tree | e6c1517b9be0d5db682fceb90f1f396423f5ac6a /src/mesa/main/teximage.h | |
parent | 78be0b5dadb3fb80e2283dbfa7f2ede146d80b41 (diff) |
The old MESA_PBUFFER_ALLOC() function allocated memory on 512-byte boundaries.
Restore that behavior with new _mesa_alloc_texmemory() function.
Should fix via_sse_memcpy() problem in found with flightgear.
Diffstat (limited to 'src/mesa/main/teximage.h')
-rw-r--r-- | src/mesa/main/teximage.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/mesa/main/teximage.h b/src/mesa/main/teximage.h index 5fb696a9503..45c851e5c88 100644 --- a/src/mesa/main/teximage.h +++ b/src/mesa/main/teximage.h @@ -5,9 +5,9 @@ /* * Mesa 3-D graphics library - * Version: 6.1 + * Version: 6.3 * - * Copyright (C) 1999-2004 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -35,6 +35,13 @@ #include "mtypes.h" +extern void * +_mesa_alloc_texmemory(GLsizei bytes); + +extern void +_mesa_free_texmemory(void *m); + + /** \name Internal functions */ /*@{*/ |