c – GLFW get Monitors count = 0,附加了另外两个监视器

c – GLFW get Monitors count = 0,附加了另外两个监视器,第1张

概述这是我的简单代码. #include <iostream>#include <GLFW/glfw3.h>int main() { int count; GLFWmonitor** monitors = glfwGetMonitors(&count); std::cout << count << std::endl; return 0;} 由于某种原因,它 这是我的简单代码.

#include <iostream>#include <GLFW/glfw3.h>int main() {    int count;    GLFWmonitor** monitors = glfwGetMonitors(&count);     std::cout << count << std::endl;    return 0;}

由于某种原因,它一直告诉我有零监视器.我假设0意味着确实有1.但我有两台其他显示器连接到我的电脑.当我进入系统偏好时,我可以清楚地看到其他两个显示器.但我不知道为什么它一直告诉我零.我不知道问题是什么.

解决方法 我猜你需要在做其他事情之前调用glfwInit().

从glfw文档:

int glfwInit (voID)

This function initializes the GLFW library. Before most GLFW functions
can be used,GLFW must be initialized,and before a program terminates
GLFW should be terminated in order to free any resources allocated
during or after initialization.

If this function fails,it calls glfwTerminate before returning. If it
succeeds,you should call glfwTerminate before the program exits.

Additional calls to this function after successful initialization but
before termination will succeed but will do nothing.

Returns GL_TRUE if successful,or GL_FALSE if an error occurred.

总结

以上是内存溢出为你收集整理的c – GLFW get Monitors count = 0,附加了另外两个监视器全部内容,希望文章能够帮你解决c – GLFW get Monitors count = 0,附加了另外两个监视器所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1215888.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存