| 1314 | } |
| 1315 | |
| 1316 | OVR_PUBLIC_FUNCTION(int) ovr_GetInt(ovrSession session, const char* propertyName, int defaultVal) |
| 1317 | { |
| 1318 | REV_TRACE(ovr_GetInt); |
| 1319 | |
| 1320 | if (strcmp("TextureSwapChainDepth", propertyName) == 0) |
| 1321 | return REV_DEFAULT_SWAPCHAIN_DEPTH; |
| 1322 | |
| 1323 | return defaultVal; |
| 1324 | } |
| 1325 | |
| 1326 | OVR_PUBLIC_FUNCTION(ovrBool) ovr_SetInt(ovrSession session, const char* propertyName, int value) |
| 1327 | { |
nothing calls this directly
no outgoing calls
no test coverage detected