Lines Matching refs:result
254 LONG result;
273 result = ChangeDisplaySettingsExW(monitor->win32.adapterName,
278 if (result == DISP_CHANGE_SUCCESSFUL)
284 if (result == DISP_CHANGE_BADDUALVIEW)
286 else if (result == DISP_CHANGE_BADFLAGS)
288 else if (result == DISP_CHANGE_BADMODE)
290 else if (result == DISP_CHANGE_BADPARAM)
292 else if (result == DISP_CHANGE_FAILED)
294 else if (result == DISP_CHANGE_NOTUPDATED)
296 else if (result == DISP_CHANGE_RESTART)
400 GLFWvidmode* result = NULL;
432 if (_glfwCompareVideoModes(result + i, &mode) == 0)
456 result = (GLFWvidmode*) _glfw_realloc(result, size * sizeof(GLFWvidmode));
460 result[*count - 1] = mode;
466 result = _glfw_calloc(1, sizeof(GLFWvidmode));
467 _glfwGetVideoModeWin32(monitor, result);
471 return result;