multicore_defs.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /**************************************************************************/ /*!
  2. @File
  3. @Title RGX Multicore Information flags
  4. @Copyright Copyright (c) Imagination Technologies Ltd. All Rights Reserved
  5. @License Dual MIT/GPLv2
  6. The contents of this file are subject to the MIT license as set out below.
  7. Permission is hereby granted, free of charge, to any person obtaining a copy
  8. of this software and associated documentation files (the "Software"), to deal
  9. in the Software without restriction, including without limitation the rights
  10. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. copies of the Software, and to permit persons to whom the Software is
  12. furnished to do so, subject to the following conditions:
  13. The above copyright notice and this permission notice shall be included in
  14. all copies or substantial portions of the Software.
  15. Alternatively, the contents of this file may be used under the terms of
  16. the GNU General Public License Version 2 ("GPL") in which case the provisions
  17. of GPL are applicable instead of those above.
  18. If you wish to allow use of your version of this file only under the terms of
  19. GPL, and not to allow others to use your version of this file under the terms
  20. of the MIT license, indicate your decision by deleting the provisions above
  21. and replace them with the notice and other provisions required by GPL as set
  22. out in the file called "GPL-COPYING" included in this distribution. If you do
  23. not delete the provisions above, a recipient may use your version of this file
  24. under the terms of either the MIT license or GPL.
  25. This License is also included in this distribution in the file called
  26. "MIT-COPYING".
  27. EXCEPT AS OTHERWISE STATED IN A NEGOTIATED AGREEMENT: (A) THE SOFTWARE IS
  28. PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
  29. BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  30. PURPOSE AND NONINFRINGEMENT; AND (B) IN NO EVENT SHALL THE AUTHORS OR
  31. COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  32. IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  33. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  34. */ /**************************************************************************/
  35. #ifndef RGX_MULTICORE_DEFS_H
  36. #define RGX_MULTICORE_DEFS_H
  37. /* Capability bits returned to client in RGXGetMultiCoreInfo */
  38. #define RGX_MULTICORE_CAPABILITY_FRAGMENT_EN (0x00000040U)
  39. #define RGX_MULTICORE_CAPABILITY_GEOMETRY_EN (0x00000020U)
  40. #define RGX_MULTICORE_CAPABILITY_COMPUTE_EN (0x00000010U)
  41. #define RGX_MULTICORE_CAPABILITY_PRIMARY_EN (0x00000008U)
  42. #define RGX_MULTICORE_ID_CLRMSK (0xFFFFFFF8U)
  43. #endif /* RGX_MULTICORE_DEFS_H */