Skip to content

Commit dfe3d27

Browse files
committed
Update Haxe formatter, run again
1 parent 5eb1304 commit dfe3d27

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+310
-388
lines changed

externs/air/flash/data/SQLConnection.hx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ extern class SQLConnection extends flash.events.EventDispatcher
2525
?responder:flash.net.Responder):Void;
2626
function open(?reference:Dynamic, ?openMode:SQLMode = SQLMode.CREATE, ?autoCompact:Bool = false, ?pageSize:Int = 1024,
2727
?encryptionKey:flash.utils.ByteArray):Void;
28-
function openAsync(?reference:Dynamic, ?openMode:SQLMode = SQLMode.CREATE, ?responder:flash.net.Responder, ?autoCompact:Bool = false, ?pageSize:Int = 1024,
29-
?encryptionKey:flash.utils.ByteArray):Void;
28+
function openAsync(?reference:Dynamic, ?openMode:SQLMode = SQLMode.CREATE, ?responder:flash.net.Responder, ?autoCompact:Bool = false,
29+
?pageSize:Int = 1024, ?encryptionKey:flash.utils.ByteArray):Void;
3030
function reencrypt(newEncryptionKey:flash.utils.ByteArray, ?responder:flash.net.Responder):Void;
3131
function releaseSavepoint(?name:String, ?responder:flash.net.Responder):Void;
3232
function rollback(?responder:flash.net.Responder):Void;

src/haxe/Timer.hx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ package haxe;
2323
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
2424
* DEALINGS IN THE SOFTWARE.
2525
*/
26-
2726
/**
2827
The Timer class allows you to create asynchronous timers on platforms that
2928
support events.

src/haxe/io/Bytes.hx

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
2020
* DEALINGS IN THE SOFTWARE.
2121
*/
22+
2223
package haxe.io;
2324

2425
#if (!hl && !js && !eval)
@@ -87,11 +88,7 @@ class Bytes
8788
public function blit(pos:Int, src:Bytes, srcpos:Int, len:Int):Void
8889
{
8990
#if !neko
90-
if (pos < 0 ||
91-
srcpos < 0 ||
92-
len < 0 ||
93-
pos + len > length ||
94-
srcpos + len > src.length) throw Error.OutsideBounds;
91+
if (pos < 0 || srcpos < 0 || len < 0 || pos + len > length || srcpos + len > src.length) throw Error.OutsideBounds;
9592
#end
9693
#if neko
9794
try
@@ -696,11 +693,7 @@ class Bytes
696693

697694
public function blit(pos:Int, src:Bytes, srcpos:Int, len:Int):Void
698695
{
699-
if (pos < 0 ||
700-
srcpos < 0 ||
701-
len < 0 ||
702-
pos + len > length ||
703-
srcpos + len > src.length) throw Error.OutsideBounds;
696+
if (pos < 0 || srcpos < 0 || len < 0 || pos + len > length || srcpos + len > src.length) throw Error.OutsideBounds;
704697
if (srcpos == 0 && len == src.b.byteLength) b.set(src.b, pos);
705698
else
706699
b.set(src.b.subarray(srcpos, srcpos + len), pos);

src/lime/_internal/backend/air/AIRWindow.hx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ class AIRWindow extends FlashWindow
7979
if (Reflect.hasField(attributes, "alwaysOnTop") && attributes.alwaysOnTop) alwaysOnTop = true;
8080
if (Reflect.hasField(attributes, "borderless") && attributes.borderless) borderless = true;
8181
if (Reflect.hasField(attributes, "fullscreen") && attributes.fullscreen) fullscreen = true;
82-
if (Reflect.hasField(attributes, "context") && Reflect.hasField(attributes.context, "hardware") && attributes.context.hardware) hardware = true;
82+
if (Reflect.hasField(attributes, "context")
83+
&& Reflect.hasField(attributes.context, "hardware")
84+
&& attributes.context.hardware) hardware = true;
8385
if (Reflect.hasField(attributes, "hidden") && attributes.hidden) hidden = true;
8486
if (Reflect.hasField(attributes, "maximized") && attributes.maximized) maximized = true;
8587
if (Reflect.hasField(attributes, "minimized") && attributes.minimized) minimized = true;

src/lime/_internal/backend/flash/FlashWindow.hx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,9 @@ class FlashWindow
265265
vsync: false,
266266
};
267267

268-
if (Reflect.hasField(attributes, "context") && Reflect.hasField(attributes.context, "background") && attributes.context.background != null)
268+
if (Reflect.hasField(attributes, "context")
269+
&& Reflect.hasField(attributes.context, "background")
270+
&& attributes.context.background != null)
269271
{
270272
stage.color = attributes.context.background;
271273
contextAttributes.background = stage.color;

src/lime/_internal/backend/html5/HTML5WebGL2RenderContext.hx

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -666,8 +666,8 @@ extern class HTML5WebGL2RenderContext extends WebGLRenderingContext
666666
offset:DataPointer):Void {})
667667
@:overload(function(target:Int, level:Int, internalformat:Int, width:Int, height:Int, border:Int, format:Int, type:Int, srcData:js.html.ArrayBufferView,
668668
srcOffset:Int):Void {})
669-
@:overload(function(target:Int, level:Int, internalformat:Int, width:Int, height:Int, border:Int, format:Int, type:Int,
670-
source:Dynamic /*js.html.ImageBitmap*/):Void {})
669+
@:overload(function(target:Int, level:Int, internalformat:Int, width:Int, height:Int, border:Int, format:Int, type:Int, source:Dynamic
670+
/*js.html.ImageBitmap*/):Void {})
671671
@:overload(function(target:Int, level:Int, internalformat:Int, width:Int, height:Int, border:Int, format:Int, type:Int,
672672
source:js.html.ImageData):Void {})
673673
@:overload(function(target:Int, level:Int, internalformat:Int, width:Int, height:Int, border:Int, format:Int, type:Int,
@@ -688,8 +688,8 @@ extern class HTML5WebGL2RenderContext extends WebGLRenderingContext
688688
source:js.html.ImageElement):Void {})
689689
@:overload(function(target:Int, level:Int, internalformat:Int, width:Int, height:Int, depth:Int, border:Int, format:Int, type:Int,
690690
source:js.html.VideoElement):Void {})
691-
@:overload(function(target:Int, level:Int, internalformat:Int, width:Int, height:Int, depth:Int, border:Int, format:Int, type:Int,
692-
source:Dynamic /*js.html.ImageBitmap*/):Void {})
691+
@:overload(function(target:Int, level:Int, internalformat:Int, width:Int, height:Int, depth:Int, border:Int, format:Int, type:Int, source:Dynamic
692+
/*js.html.ImageBitmap*/):Void {})
693693
@:overload(function(target:Int, level:Int, internalformat:Int, width:Int, height:Int, depth:Int, border:Int, format:Int, type:Int,
694694
source:js.html.ImageData):Void {})
695695
@:overload(function(target:Int, level:Int, internalformat:Int, width:Int, height:Int, depth:Int, border:Int, format:Int, type:Int,
@@ -703,15 +703,16 @@ extern class HTML5WebGL2RenderContext extends WebGLRenderingContext
703703
@:overload(function(target:Int, level:Int, xoffset:Int, yoffset:Int, width:Int, height:Int, format:Int, type:Int, srcData:js.html.ArrayBufferView,
704704
srcOffset:Int):Void {})
705705
@:overload(function(target:Int, level:Int, xoffset:Int, yoffset:Int, width:Int, height:Int, format:Int, type:Int, offset:DataPointer):Void {})
706-
@:overload(function(target:Int, level:Int, xoffset:Int, yoffset:Int, width:Int, height:Int, format:Int, type:Int, source:js.html.ImageData):Void {})
706+
@:overload(function(target:Int, level:Int, xoffset:Int, yoffset:Int, width:Int, height:Int, format:Int, type:Int,
707+
source:js.html.ImageData):Void {})
707708
@:overload(function(target:Int, level:Int, xoffset:Int, yoffset:Int, width:Int, height:Int, format:Int, type:Int,
708709
source:js.html.ImageElement):Void {})
709710
@:overload(function(target:Int, level:Int, xoffset:Int, yoffset:Int, width:Int, height:Int, format:Int, type:Int,
710711
source:js.html.CanvasElement):Void {})
711712
@:overload(function(target:Int, level:Int, xoffset:Int, yoffset:Int, width:Int, height:Int, format:Int, type:Int,
712713
source:js.html.VideoElement):Void {})
713-
@:overload(function(target:Int, level:Int, xoffset:Int, yoffset:Int, width:Int, height:Int, format:Int, type:Int,
714-
source:Dynamic /*ImageBitmap*/):Void {})
714+
@:overload(function(target:Int, level:Int, xoffset:Int, yoffset:Int, width:Int, height:Int, format:Int, type:Int, source:Dynamic
715+
/*ImageBitmap*/):Void {})
715716
@:overload(function(target:Int, level:Int, xoffset:Int, yoffset:Int, width:Int, height:Int, format:Int, type:Int,
716717
pixels:js.html.ArrayBufferView):Void {})
717718
@:overload(function(target:Int, level:Int, xoffset:Int, yoffset:Int, format:Int, type:Int, pixels:js.html.ImageData):Void {})
@@ -728,8 +729,8 @@ extern class HTML5WebGL2RenderContext extends WebGLRenderingContext
728729
source:js.html.CanvasElement):Void {})
729730
@:overload(function(target:Int, level:Int, xoffset:Int, yoffset:Int, zoffset:Int, width:Int, height:Int, depth:Int, format:Int, type:Int,
730731
source:js.html.VideoElement):Void {})
731-
@:overload(function(target:Int, level:Int, xoffset:Int, yoffset:Int, zoffset:Int, width:Int, height:Int, depth:Int, format:Int, type:Int,
732-
source:Dynamic /*ImageBitmap*/):Void {})
732+
@:overload(function(target:Int, level:Int, xoffset:Int, yoffset:Int, zoffset:Int, width:Int, height:Int, depth:Int, format:Int, type:Int, source:Dynamic
733+
/*ImageBitmap*/):Void {})
733734
@:overload(function(target:Int, level:Int, xoffset:Int, yoffset:Int, zoffset:Int, width:Int, height:Int, depth:Int, format:Int, type:Int,
734735
pixels:js.html.ArrayBufferView, ?srcOffset:Int):Void {})
735736
public function texSubImage3D(target:Int, level:Int, xoffset:Int, yoffset:Int, zoffset:Int, width:Int, height:Int, depth:Int, format:Int, type:Int,

src/lime/_internal/backend/html5/HTML5Window.hx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,9 @@ class HTML5Window
182182
div.style.height = parent.__height + "px";
183183
}
184184

185-
if ((Reflect.hasField(attributes, "resizable") && attributes.resizable) || (!Reflect.hasField(attributes, "width") && setWidth == 0 && setHeight == 0))
185+
if ((Reflect.hasField(attributes, "resizable") && attributes.resizable) || (!Reflect.hasField(attributes, "width")
186+
&& setWidth == 0
187+
&& setHeight == 0))
186188
{
187189
parent.__resizable = true;
188190
}
@@ -462,10 +464,8 @@ class HTML5Window
462464

463465
private function handleFullscreenEvent(event:Dynamic):Void
464466
{
465-
var fullscreenElement = untyped (document.fullscreenElement ||
466-
document.mozFullScreenElement ||
467-
document.webkitFullscreenElement ||
468-
document.msFullscreenElement);
467+
var fullscreenElement = untyped (document.fullscreenElement || document.mozFullScreenElement || document.webkitFullscreenElement
468+
|| document.msFullscreenElement);
469469

470470
if (fullscreenElement != null)
471471
{

src/lime/_internal/backend/native/NativeApplication.hx

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,9 @@ class NativeApplication
271271
{
272272
if (type == KEY_DOWN)
273273
{
274-
if (toggleFullscreen && modifier.altKey && (!modifier.ctrlKey && !modifier.shiftKey && !modifier.metaKey))
274+
if (toggleFullscreen
275+
&& modifier.altKey
276+
&& (!modifier.ctrlKey && !modifier.shiftKey && !modifier.metaKey))
275277
{
276278
toggleFullscreen = false;
277279

@@ -288,10 +290,7 @@ class NativeApplication
288290
}
289291

290292
#if rpi
291-
if (keyCode == ESCAPE &&
292-
modifier == KeyModifier.NONE &&
293-
type == KEY_UP &&
294-
!window.onKeyUp.canceled)
293+
if (keyCode == ESCAPE && modifier == KeyModifier.NONE && type == KEY_UP && !window.onKeyUp.canceled)
295294
{
296295
System.exit(0);
297296
}
@@ -301,7 +300,9 @@ class NativeApplication
301300
{
302301
if (type == KEY_DOWN)
303302
{
304-
if (toggleFullscreen && (modifier.ctrlKey && modifier.metaKey) && (!modifier.altKey && !modifier.shiftKey))
303+
if (toggleFullscreen
304+
&& (modifier.ctrlKey && modifier.metaKey)
305+
&& (!modifier.altKey && !modifier.shiftKey))
305306
{
306307
toggleFullscreen = false;
307308

@@ -317,10 +318,7 @@ class NativeApplication
317318
}
318319
}
319320
#elseif android
320-
if (keyCode == APP_CONTROL_BACK &&
321-
modifier == KeyModifier.NONE &&
322-
type == KEY_UP &&
323-
!window.onKeyUp.canceled)
321+
if (keyCode == APP_CONTROL_BACK && modifier == KeyModifier.NONE && type == KEY_UP && !window.onKeyUp.canceled)
324322
{
325323
var mainActivity = JNI.createStaticField("org/haxe/extension/Extension", "mainActivity", "Landroid/app/Activity;");
326324
var moveTaskToBack = JNI.createMemberMethod("android/app/Activity", "moveTaskToBack", "(Z)Z");

src/lime/_internal/backend/native/NativeAudioSource.hx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ class NativeAudioSource
131131
AL.sourcef (handle, AL.PITCH, pitch*0.9);
132132
pitch = AL.getSourcef (handle, AL.PITCH);
133133
trace(pitch); */
134-
135134
/*var pos = getPosition();
136135
trace(AL.DISTANCE_MODEL);
137136
AL.distanceModel(AL.INVERSE_DISTANCE);
@@ -140,7 +139,6 @@ class NativeAudioSource
140139
setPosition(new Vector4(10, 10, -100));
141140
pos = getPosition();
142141
trace(pos); */
143-
144142
/*var filter = AL.createFilter();
145143
trace(AL.getErrorString());
146144

src/lime/_internal/backend/native/NativeCFFI.hx

Lines changed: 26 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ class NativeCFFI
175175

176176
@:cffi private static function lime_image_data_util_color_transform(image:Dynamic, rect:Dynamic, colorMatrix:Dynamic):Void;
177177

178-
@:cffi private static function lime_image_data_util_copy_channel(image:Dynamic, sourceImage:Dynamic, sourceRect:Dynamic, destPoint:Dynamic, srcChannel:Int,
179-
destChannel:Int):Void;
178+
@:cffi private static function lime_image_data_util_copy_channel(image:Dynamic, sourceImage:Dynamic, sourceRect:Dynamic, destPoint:Dynamic,
179+
srcChannel:Int, destChannel:Int):Void;
180180

181181
@:cffi private static function lime_image_data_util_copy_pixels(image:Dynamic, sourceImage:Dynamic, sourceRect:Dynamic, destPoint:Dynamic,
182182
alphaImage:Dynamic, alphaPoint:Dynamic, mergeAlpha:Bool):Void;
@@ -1923,7 +1923,8 @@ class NativeCFFI
19231923
@:hlNative("lime", "lime_al_buffer3f") private static function lime_al_buffer3f(buffer:CFFIPointer, param:Int, value1:hl.F32, value2:hl.F32,
19241924
value3:hl.F32):Void {}
19251925

1926-
@:hlNative("lime", "lime_al_buffer3i") private static function lime_al_buffer3i(buffer:CFFIPointer, param:Int, value1:Int, value2:Int, value3:Int):Void {}
1926+
@:hlNative("lime", "lime_al_buffer3i") private static function lime_al_buffer3i(buffer:CFFIPointer, param:Int, value1:Int, value2:Int,
1927+
value3:Int):Void {}
19271928

19281929
@:hlNative("lime", "lime_al_bufferf") private static function lime_al_bufferf(buffer:CFFIPointer, param:Int, value:hl.F32):Void {}
19291930

@@ -2887,8 +2888,8 @@ class NativeCFFI
28872888
return null;
28882889
}
28892890

2890-
@:hlNative("lime", "lime_cairo_curve_to") private static function lime_cairo_curve_to(handle:CFFIPointer, x1:Float, y1:Float, x2:Float, y2:Float, x3:Float,
2891-
y3:Float):Void {}
2891+
@:hlNative("lime", "lime_cairo_curve_to") private static function lime_cairo_curve_to(handle:CFFIPointer, x1:Float, y1:Float, x2:Float, y2:Float,
2892+
x3:Float, y3:Float):Void {}
28922893

28932894
@:hlNative("lime", "lime_cairo_fill") private static function lime_cairo_fill(handle:CFFIPointer):Void {}
28942895

@@ -3077,13 +3078,14 @@ class NativeCFFI
30773078

30783079
@:hlNative("lime", "lime_cairo_set_source") private static function lime_cairo_set_source(handle:CFFIPointer, pattern:CFFIPointer):Void {}
30793080

3080-
@:hlNative("lime", "lime_cairo_set_source_rgb") private static function lime_cairo_set_source_rgb(handle:CFFIPointer, r:Float, g:Float, b:Float):Void {}
3081+
@:hlNative("lime", "lime_cairo_set_source_rgb") private static function lime_cairo_set_source_rgb(handle:CFFIPointer, r:Float, g:Float,
3082+
b:Float):Void {}
30813083

30823084
@:hlNative("lime", "lime_cairo_set_source_rgba") private static function lime_cairo_set_source_rgba(handle:CFFIPointer, r:Float, g:Float, b:Float,
30833085
a:Float):Void {}
30843086

3085-
@:hlNative("lime", "lime_cairo_set_source_surface") private static function lime_cairo_set_source_surface(handle:CFFIPointer, surface:CFFIPointer, x:Float,
3086-
y:Float):Void {}
3087+
@:hlNative("lime", "lime_cairo_set_source_surface") private static function lime_cairo_set_source_surface(handle:CFFIPointer, surface:CFFIPointer,
3088+
x:Float, y:Float):Void {}
30873089

30883090
@:hlNative("lime", "lime_cairo_set_tolerance") private static function lime_cairo_set_tolerance(handle:CFFIPointer, tolerance:Float):Void {}
30893091

@@ -3204,8 +3206,8 @@ class NativeCFFI
32043206
return 0;
32053207
}
32063208

3207-
@:hlNative("lime", "lime_cairo_pattern_add_color_stop_rgb") private static function lime_cairo_pattern_add_color_stop_rgb(handle:CFFIPointer, offset:Float,
3208-
red:Float, green:Float, blue:Float):Void {}
3209+
@:hlNative("lime", "lime_cairo_pattern_add_color_stop_rgb") private static function lime_cairo_pattern_add_color_stop_rgb(handle:CFFIPointer,
3210+
offset:Float, red:Float, green:Float, blue:Float):Void {}
32093211

32103212
@:hlNative("lime", "lime_cairo_pattern_add_color_stop_rgba") private static function lime_cairo_pattern_add_color_stop_rgba(handle:CFFIPointer,
32113213
offset:Float, red:Float, green:Float, blue:Float, alpha:Float):Void {}
@@ -3512,7 +3514,8 @@ class NativeCFFI
35123514
return 0;
35133515
}
35143516

3515-
@:hlNative("lime", "lime_curl_multi_setopt") private static function lime_curl_multi_setopt(multi_handle:CFFIPointer, option:Int, parameter:Dynamic):Int
3517+
@:hlNative("lime", "lime_curl_multi_setopt") private static function lime_curl_multi_setopt(multi_handle:CFFIPointer, option:Int,
3518+
parameter:Dynamic):Int
35163519
{
35173520
return 0;
35183521
}
@@ -3595,8 +3598,8 @@ class NativeCFFI
35953598

35963599
@:cffi private static function lime_gl_compile_shader(shader:Int):Void;
35973600

3598-
@:cffi private static function lime_gl_compressed_tex_image_2d(target:Int, level:Int, internalformat:Int, width:Int, height:Int, border:Int, imageSize:Int,
3599-
data:DataPointer):Void;
3601+
@:cffi private static function lime_gl_compressed_tex_image_2d(target:Int, level:Int, internalformat:Int, width:Int, height:Int, border:Int,
3602+
imageSize:Int, data:DataPointer):Void;
36003603

36013604
@:cffi private static function lime_gl_compressed_tex_image_3d(target:Int, level:Int, internalformat:Int, width:Int, height:Int, depth:Int, border:Int,
36023605
imageSize:Int, data:DataPointer):Void;
@@ -3610,7 +3613,8 @@ class NativeCFFI
36103613
@:cffi private static function lime_gl_copy_buffer_sub_data(readTarget:Int, writeTarget:Int, readOffset:DataPointer, writeOffset:DataPointer,
36113614
size:Int):Void;
36123615

3613-
@:cffi private static function lime_gl_copy_tex_image_2d(target:Int, level:Int, internalformat:Int, x:Int, y:Int, width:Int, height:Int, border:Int):Void;
3616+
@:cffi private static function lime_gl_copy_tex_image_2d(target:Int, level:Int, internalformat:Int, x:Int, y:Int, width:Int, height:Int,
3617+
border:Int):Void;
36143618

36153619
@:cffi private static function lime_gl_copy_tex_sub_image_2d(target:Int, level:Int, xoffset:Int, yoffset:Int, x:Int, y:Int, width:Int, height:Int):Void;
36163620

@@ -4844,15 +4848,17 @@ class NativeCFFI
48444848

48454849
@:hlNative("lime", "lime_gl_clear") private static function lime_gl_clear(mask:Int):Void {}
48464850

4847-
@:hlNative("lime", "lime_gl_clear_bufferfi") private static function lime_gl_clear_bufferfi(buffer:Int, drawBuffer:Int, depth:hl.F32, stencil:Int):Void {}
4851+
@:hlNative("lime", "lime_gl_clear_bufferfi") private static function lime_gl_clear_bufferfi(buffer:Int, drawBuffer:Int, depth:hl.F32,
4852+
stencil:Int):Void {}
48484853

48494854
@:hlNative("lime", "lime_gl_clear_bufferfv") private static function lime_gl_clear_bufferfv(buffer:Int, drawBuffer:Int, data:DataPointer):Void {}
48504855

48514856
@:hlNative("lime", "lime_gl_clear_bufferiv") private static function lime_gl_clear_bufferiv(buffer:Int, drawBuffer:Int, data:DataPointer):Void {}
48524857

48534858
@:hlNative("lime", "lime_gl_clear_bufferuiv") private static function lime_gl_clear_bufferuiv(buffer:Int, drawBuffer:Int, data:DataPointer):Void {}
48544859

4855-
@:hlNative("lime", "lime_gl_client_wait_sync") private static function lime_gl_client_wait_sync(sync:CFFIPointer, flags:Int, timeoutA:Int, timeoutB:Int):Int
4860+
@:hlNative("lime", "lime_gl_client_wait_sync") private static function lime_gl_client_wait_sync(sync:CFFIPointer, flags:Int, timeoutA:Int,
4861+
timeoutB:Int):Int
48564862
{
48574863
return 0;
48584864
}
@@ -5476,8 +5482,8 @@ class NativeCFFI
54765482
@:hlNative("lime", "lime_gl_tex_storage_3d") private static function lime_gl_tex_storage_3d(target:Int, level:Int, internalformat:Int, width:Int,
54775483
height:Int, depth:Int):Void {}
54785484

5479-
@:hlNative("lime", "lime_gl_tex_sub_image_2d") private static function lime_gl_tex_sub_image_2d(target:Int, level:Int, xoffset:Int, yoffset:Int, width:Int,
5480-
height:Int, format:Int, type:Int, data:DataPointer):Void {}
5485+
@:hlNative("lime", "lime_gl_tex_sub_image_2d") private static function lime_gl_tex_sub_image_2d(target:Int, level:Int, xoffset:Int, yoffset:Int,
5486+
width:Int, height:Int, format:Int, type:Int, data:DataPointer):Void {}
54815487

54825488
@:hlNative("lime", "lime_gl_tex_sub_image_3d") private static function lime_gl_tex_sub_image_3d(target:Int, level:Int, xoffset:Int, yoffset:Int,
54835489
zoffset:Int, width:Int, height:Int, depth:Int, format:Int, type:Int, data:DataPointer):Void {}
@@ -6288,7 +6294,8 @@ class NativeCFFI
62886294
@:hlNative("lime", "lime_hb_buffer_set_cluster_level") private static function lime_hb_buffer_set_cluster_level(buffer:CFFIPointer,
62896295
clusterLevel:Int):Void {}
62906296

6291-
@:hlNative("lime", "lime_hb_buffer_set_content_type") private static function lime_hb_buffer_set_content_type(buffer:CFFIPointer, contentType:Int):Void {}
6297+
@:hlNative("lime", "lime_hb_buffer_set_content_type") private static function lime_hb_buffer_set_content_type(buffer:CFFIPointer,
6298+
contentType:Int):Void {}
62926299

62936300
@:hlNative("lime", "lime_hb_buffer_set_direction") private static function lime_hb_buffer_set_direction(buffer:CFFIPointer, direction:Int):Void {}
62946301

0 commit comments

Comments
 (0)