Fixing problems with code complete again

This commit is contained in:
underscorediscovery
2013-08-08 06:19:31 -02:30
parent 75f902da2f
commit b15fb34403
6 changed files with 10 additions and 17 deletions

View File

@@ -1,8 +1,6 @@
package lime.gl.html5;
#if lime_html5
class Ext {
public static function drawBuffers( n:Int, buffers:Int ){
@@ -60,4 +58,3 @@ class Ext {
private static var ext_draw_buffers : Dynamic = null;
}
#end //lime_html5

View File

@@ -1,7 +1,5 @@
package lime.gl.html5;
#if lime_html5
// import flash.display.BitmapData;
import lime.geometry.Matrix3D;
import lime.utils.ByteArray;
@@ -1457,5 +1455,3 @@ typedef ShaderPrecisionFormat = {
};
#end //lime_html5

View File

@@ -1,7 +1,5 @@
package lime.gl.native;
#if lime_native
import lime.utils.Libs;
class Ext {
@@ -58,5 +56,3 @@ class Ext {
private static var nme_gl_ext_draw_buffers = load("nme_gl_ext_draw_buffers", 2);
}
#end //lime_native

View File

@@ -1,7 +1,5 @@
package lime.gl.native;
#if lime_native
import lime.utils.Libs;
// import flash.display.BitmapData;
@@ -1304,4 +1302,3 @@ typedef ShaderPrecisionFormat =
};
#end //lime_native

BIN
run.n vendored

Binary file not shown.

View File

@@ -7,7 +7,11 @@ import sys.io.File;
import sys.io.Process;
import sys.FileSystem;
import helpers.*;
#if pathtools
import helpers.PathHelper;
import helpers.FileHelper;
#end
import project.Haxelib;
class RunScript {
@@ -18,14 +22,16 @@ class RunScript {
var data = args[1];
var data2 = (args.length > 2) ? args[2] : '';
#if pathtools
switch(command) {
//create
case "create":
var sample = data;
var name = data2;
var samples_path = PathHelper.getHaxelib (new Haxelib ("haxelab")) + 'samples/';
var samples_path = PathHelper.getHaxelib (new Haxelib ("luxe")) + 'samples/';
var sample_path = samples_path + sample + '/';
if(FileSystem.exists(sample_path)) {
@@ -45,6 +51,7 @@ class RunScript {
}
return true;
//buildto
case "copy":
var target = data;
@@ -64,7 +71,7 @@ class RunScript {
return true;
default:
return false;
}
}#end
return false;
}