android_gpus.xml 1.1 KB

12345678910111213141516171819202122232425262728
  1. <GPUList>
  2. <!--
  3. This file allows different config files containing cvar overrides to be loaded
  4. depending on the GPU and API version. Both gpuName and apiVersion support regular
  5. expressions. Some of the special characters include:
  6. . - Matches any single character
  7. * - Matches the previous element zero or more times
  8. \d - Matches a digit
  9. \w - Matches a alphanumeric character
  10. [] - Matches a single character contained by the brackets
  11. {m,n} - Matches the preceding character between m and n times
  12. To match Mali-T7x0 where x is any digit 0-9, the regular expression Mali-T7\d0 can
  13. be used.
  14. For example loading MaliT760.cfg if the GPU description contains Mali-T760
  15. <Config file="MaliT760.cfg">
  16. <gpu gpuName="Mali.T760"/>
  17. </Config>
  18. Or loading Adreno530.cfg if the GPU description contains Adreno 530 and the
  19. API Contains OpenGL ES 3.1
  20. <Config file="Adreno530.cfg">
  21. <gpu gpuName="Adreno.*530" apiVersion="OpenGL.*ES.*3\.1"/>
  22. </Config>
  23. -->
  24. </GPUList>