diff options
author | José Fonseca <[email protected]> | 2008-05-08 14:56:03 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-05-08 15:29:20 +0900 |
commit | 53996e562f8623ccb1defeaaa77efdff24477808 (patch) | |
tree | 44d4246f85fb52d42a534ab96c9a8fa5028ad701 /src/gallium/auxiliary/pipebuffer | |
parent | a266af9200444a4f651e0ff0cf54e533be38d44d (diff) |
pipebuffer: Don't include standard headers directly.
Diffstat (limited to 'src/gallium/auxiliary/pipebuffer')
-rw-r--r-- | src/gallium/auxiliary/pipebuffer/pb_bufmgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h b/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h index 8de286e3f94..f6cc7a525b7 100644 --- a/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h +++ b/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h @@ -50,7 +50,8 @@ #define PB_BUFMGR_H_ -#include <stddef.h> +#include "pipe/p_compiler.h" +#include "pipe/p_error.h" #ifdef __cplusplus @@ -68,7 +69,6 @@ struct pipe_winsys; */ struct pb_manager { - /* XXX: we will likely need more allocation flags */ struct pb_buffer * (*create_buffer)( struct pb_manager *mgr, size_t size, |