diff options
author | Michel Dänzer <michel.daenzer@amd.com> | 2012-06-27 14:48:47 +0200 |
---|---|---|
committer | Michel Dänzer <michel@daenzer.net> | 2012-07-05 19:58:39 +0200 |
commit | 9eac8021f3d33a63156f9f5d43a220e88bb3f8db (patch) | |
tree | f7061124c079b8c48c8832278b33d97bdde39899 /src/radeon_bo_helper.h | |
parent | 060c7836e7f7777bacca4e23f57c5985beab33bc (diff) |
EXA: Factor out pixmap BO allocation into a helper function.
Signed-off-by: Michel Dänzer <michel.daenzer@amd.com>
Diffstat (limited to 'src/radeon_bo_helper.h')
-rw-r--r-- | src/radeon_bo_helper.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/radeon_bo_helper.h b/src/radeon_bo_helper.h new file mode 100644 index 00000000..0f6fffbd --- /dev/null +++ b/src/radeon_bo_helper.h @@ -0,0 +1,31 @@ +/* + * Copyright 2012 Advanced Micro Devices, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR + * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + * OTHER DEALINGS IN THE SOFTWARE. + */ + +#ifndef RADEON_BO_HELPER_H +#define RADEON_BO_HELPER_H 1 + +extern struct radeon_bo* +radeon_alloc_pixmap_bo(ScrnInfoPtr pScrn, int width, int height, int depth, + int usage_hint, int bitsPerPixel, int *new_pitch, + struct radeon_surface *new_surface, uint32_t *new_tiling); + +#endif /* RADEON_BO_HELPER_H */ |