FreeImageTexture() public method

public FreeImageTexture ( HtmlImage image, NTexture texture ) : void
image HtmlImage
texture NTexture
return void
Example #1
0
 static public int FreeImageTexture(IntPtr l)
 {
     try {
         FairyGUI.Utils.HtmlPageContext self = (FairyGUI.Utils.HtmlPageContext)checkSelf(l);
         FairyGUI.Utils.HtmlImage       a1;
         checkType(l, 2, out a1);
         FairyGUI.NTexture a2;
         checkType(l, 3, out a2);
         self.FreeImageTexture(a1, a2);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }