EasyAR is running on an unsupported graphics device of type -16

0 投票
最新提问 9月 4, 2017 用户: martain0606 (280 分)
如題 我在做IOS時遇到這個問題

EasyAR is running on an unsupported graphics device of type -16

有誰知道這該怎麼處理嗎

我去設定Graphics API也沒有反應

上網找相關問題只有 type-4的解法用起來也不一樣

1个回答

–1 投票
最新回答 9月 4, 2017 用户: albert52 (37,800 分)

hi,

1.在UnityAppController.h中添加以下两个方法

extern "C" void ezarUnitySetGraphicsDevice(void* device, int deviceType, int eventType);
extern "C" void ezarUnityRenderEvent(int marker);

2.在UnityAppController.mm中添加这两个方法
3.在UnityAppController.mm实现以下方法
- (void)shouldAttachRenderDelegate        
{
    UnityRegisterRenderingPlugin(&ezarUnitySetGraphicsDevice, &ezarUnityRenderEvent);
}

参考:http://www.jianshu.com/p/1afd619eda9e
欢迎来到 EasyAR Q&A ,有什么不懂的可以尽管在这里提问,你将会收到社区其他成员的回答。
...