| 2387 | return g_functions.m_GetSupportedExtension(context, index); |
| 2388 | } |
| 2389 | bool IsContextFeatureSupported(HContext context, ContextFeature feature) |
| 2390 | { |
| 2391 | if (CONTEXT_FEATURE_VSYNC == feature) |
| 2392 | { |
| 2393 | AdapterFamily family = GetInstalledAdapterFamily(); |
| 2394 | return !(family == ADAPTER_FAMILY_NULL || family == ADAPTER_FAMILY_NONE); |
| 2395 | } |
| 2396 | return g_functions.m_IsContextFeatureSupported(context, feature); |
| 2397 | } |
| 2398 | PipelineState GetPipelineState(HContext context) |
| 2399 | { |
| 2400 | return g_functions.m_GetPipelineState(context); |
no test coverage detected