| 468 | |
| 469 | |
| 470 | int EGLConfigID(EGLDisplay edpy, EGLConfig config) |
| 471 | { |
| 472 | EGLint temp = 0; |
| 473 | if(!config) THROWNL("config==NULL in EGLConfigID()"); |
| 474 | if(!edpy) THROWNL("display==NULL in EGLConfigID()"); |
| 475 | GET_CFG_ATTRIB(config, EGL_CONFIG_ID, temp); |
| 476 | return temp; |
| 477 | } |
| 478 | |
| 479 | |
| 480 | // This tests the faker's client/server visual matching heuristics |
no outgoing calls
no test coverage detected