
bug
zxcasd11
这个作者很懒,什么都没留下…
展开
-
imgui 函数ImGui_ImplOpenGL3_Init() crash解决方案
解决方案:https://phabricator.polutropon.games/file/data/yjben6oh44tkpcrjmk7l/PHID-FILE-minh2e74gz6pkb25htzx/file自测可行:在imconfig.h 头文件中添加 #define IMGUI_IMPL_OPENGL_LOADER_GL3W可以解决问题关键提示:// Desktop OpenGL: attempt to detect default GL loader based on availa原创 2020-08-19 10:29:59 · 1638 阅读 · 0 评论 -
opengl glsl for循环中使用texture2D导致的问题及for循环注意事项
通常情况下,for循环中使用texture2D,不会出现什么问题,但是安卓的情况比价复杂,部分机型还是出现了问题。现把问题记录一下,可能会帮到其他人。机型 : nova 7 5G系统 : Android 10.0现象 : 画面闪屏问题代码段:... ...for(int i=radius;i>=1;i--){ vec2 curBottomCoordinate = uv+vec2(0.0, float(i))*unit_uv; vec2 curTopCo原创 2020-08-03 12:50:47 · 1456 阅读 · 0 评论 -
MacOS 10.14.6 无法使用GDB的解决方法
错误信息如下:Starting program: /Users/lemon/work/projects/test_example/leetcode/rt_reuse/mainUnable to find Mach task port for process-id 33500: (os/kern) failure (0x5).(please check gdb is codesigned - ...原创 2020-06-29 11:01:53 · 525 阅读 · 0 评论 -
bus error 错误
今天调算法时,第一次发现一个“bus error”的错误,以前没有见过,现记录如下:** 1. 什么情况下出现的?**答:有个算法接口的参数为指针,该指针指向用户开辟的内存,如果用户开辟的内存为空,或空指针,就会报bus error的错误。使用合适的内存指针即可。特别注意,调用第三方接口时,一定要确保传参正确。以上情况,只针对自己遇到的境况,其他情形不确定有效。总之,还是要仔细,否则会犯一些低级错误,浪费时间。参考:Bus error的解决方法...原创 2020-06-28 19:00:47 · 5070 阅读 · 0 评论 -
Your development team, "xxx", does not support the Push Notifications capability.解决方法
编译ios工程,出现如下错误:Your development team, “xxx”, does not support the Push Notifications capability.解决方法:找到当前工程对应的xxx.entitlements文件,删除APS Environment项,保存后重新打开工程即可。可能同时出现的问题:Your development team, ...原创 2020-04-07 20:27:34 · 6866 阅读 · 0 评论 -
Your development team, "xxx", does not support the Associated Domains capability. 解决方法
今天编译客户端ios工程时,使用了免费的个人开发者账号,出现了如下错误:Your development team, “xxx”, does not support the Associated Domains capability.解决方法:删除 Signing & Capabilities --> Associated Domains出现上述问题,一般是由于使用了免...原创 2020-04-07 20:16:13 · 9237 阅读 · 0 评论