| 85 | } |
| 86 | |
| 87 | uint32_t GetLinkedGraphicsAdapterCount() |
| 88 | { |
| 89 | uint32_t adapter_count = 0; |
| 90 | GraphicsAdapter* next = g_adapter_list; |
| 91 | while(next) |
| 92 | { |
| 93 | ++adapter_count; |
| 94 | next = next->m_Next; |
| 95 | } |
| 96 | |
| 97 | return adapter_count; |
| 98 | } |
| 99 | |
| 100 | static bool SelectAdapterByPriority() |
| 101 | { |