Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

amdgpu_public.h 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Copyright © 2015 Advanced Micro Devices, Inc.
  3. * All Rights Reserved.
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining
  6. * a copy of this software and associated documentation files (the
  7. * "Software"), to deal in the Software without restriction, including
  8. * without limitation the rights to use, copy, modify, merge, publish,
  9. * distribute, sub license, and/or sell copies of the Software, and to
  10. * permit persons to whom the Software is furnished to do so, subject to
  11. * the following conditions:
  12. *
  13. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  14. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  15. * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  16. * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
  17. * AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
  20. * USE OR OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. * The above copyright notice and this permission notice (including the
  23. * next paragraph) shall be included in all copies or substantial portions
  24. * of the Software.
  25. */
  26. #ifndef AMDGPU_PUBLIC_H
  27. #define AMDGPU_PUBLIC_H
  28. #include "pipe/p_defines.h"
  29. struct radeon_winsys;
  30. struct pipe_screen;
  31. struct pipe_screen_config;
  32. typedef struct pipe_screen *(*radeon_screen_create_t)(struct radeon_winsys *,
  33. const struct pipe_screen_config *config);
  34. struct radeon_winsys *
  35. amdgpu_winsys_create(int fd, const struct pipe_screen_config *config,
  36. radeon_screen_create_t screen_create);
  37. #endif