码迷,mamicode.com
首页 > 其他好文 > 详细

插件之间的融合

时间:2017-03-23 02:19:21      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:marker   int   add   erer   bsp   port   imp   nbsp   end   

MMT与高通直接的融合

在VuforiaNativeRendererController.mm中修改

///import MMT head file

#import <UIKit/UIKit.h>

/// Add original MMT function

extern "C" void MMTUnitySetGraphicsDevice(void* device, int deviceType, int eventType);

extern "C" void MMTUnityRenderEvent(int marker);

 

///merge two function

extern "C" void VuforiaSetGraphicsDeviceMerges(void* device, int deviceType, int eventType)

{

    VuforiaSetGraphicsDevice(device,deviceType,eventType);

    MMTUnitySetGraphicsDevice(device,deviceType,eventType);

}

 

extern "C" void VuforiaRenderEventMerges(int marker)

{

    VuforiaRenderEvent(marker);

    MMTUnityRenderEvent(marker);

}

 最后在把触发旧方法改成新方法即可

插件之间的融合

标签:marker   int   add   erer   bsp   port   imp   nbsp   end   

原文地址:http://www.cnblogs.com/joson/p/6602885.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!