Skip to content

Commit 2b143eb

Browse files
committed
android: update GLHelper.h includes
1 parent 76e4485 commit 2b143eb

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

Source/Fuse.Common/FramebufferPool.uno

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ namespace Fuse
5656
}
5757
}
5858

59-
[extern(ANDROID) Require("Source.Include", "Uno/Graphics/GLHelper.h")]
59+
[extern(ANDROID) Require("Source.Include", "uDroid/GLHelper.h")]
6060
internal class FramebufferPoolImpl : ISoftDisposable
6161
{
6262
public FramebufferPoolImpl()

Source/Fuse.Common/GraphicsWorker.uno

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ using Fuse;
66

77
namespace Fuse
88
{
9-
[extern(ANDROID) Require("Source.Include", "Uno/Graphics/GLHelper.h")]
9+
[extern(ANDROID) Require("Source.Include", "uDroid/GLHelper.h")]
1010
[extern(IOS && METAL) Require("Source.Include", "MetalANGLE/MGLKit.h")]
1111
/** Allows dispatching actions on a separate thread with access to a grpahics
1212
context that shares data with the main graphics context of the @App.

Source/Fuse.Controls.Native/Android/GraphicsView.uno

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace Fuse.Controls.Native.Android
3636
IntPtr _nativeWindow = IntPtr.Zero;
3737

3838
[TargetSpecificImplementation]
39-
[Require("Source.Include", "Uno/Graphics/GLHelper.h")]
39+
[Require("Source.Include", "uDroid/GLHelper.h")]
4040
protected void SetSurface(Java.Object surfaceHandle)
4141
{
4242
if (_surfaceHandle != null)
@@ -51,7 +51,7 @@ namespace Fuse.Controls.Native.Android
5151
}
5252

5353
[TargetSpecificImplementation]
54-
[Require("Source.Include", "Uno/Graphics/GLHelper.h")]
54+
[Require("Source.Include", "uDroid/GLHelper.h")]
5555
protected void DestroySurface()
5656
{
5757
extern(_eglSurface) "GLHelper::SwapBackToBackgroundSurface( (EGLSurface)$0 )";
@@ -63,7 +63,7 @@ namespace Fuse.Controls.Native.Android
6363
}
6464

6565
[TargetSpecificImplementation]
66-
[Require("Source.Include", "Uno/Graphics/GLHelper.h")]
66+
[Require("Source.Include", "uDroid/GLHelper.h")]
6767
public bool BeginDraw(int2 size)
6868
{
6969
if (_eglSurface == IntPtr.Zero)
@@ -86,7 +86,7 @@ namespace Fuse.Controls.Native.Android
8686
}
8787

8888
[TargetSpecificImplementation]
89-
[Require("Source.Include", "Uno/Graphics/GLHelper.h")]
89+
[Require("Source.Include", "uDroid/GLHelper.h")]
9090
public void EndDraw()
9191
{
9292
double t;

Source/Fuse.Controls.Video/Android/VideoPlayer.uno

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ namespace Fuse.Controls.VideoImpl.Android
272272
@}
273273

274274
[Foreign(Language.Java)]
275-
[Require("Source.Include", "Uno/Graphics/GLHelper.h")]
275+
[Require("Source.Include", "uDroid/GLHelper.h")]
276276
public static bool IsHardwareAccelerated()
277277
@{
278278
android.view.Window window = com.fuse.Activity.getRootActivity().getWindow();

Source/Fuse.Elements/Caching/ElementAtlasPool.uno

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ namespace Fuse.Elements
191191
ElementAtlasFramebufferPool.AtlasSizeChanged += OnAtlasSizeChanged;
192192
}
193193

194-
[Require("Source.Include", "Uno/Graphics/GLHelper.h")]
194+
[Require("Source.Include", "uDroid/GLHelper.h")]
195195
extern(ANDROID)
196196
void DiscardPool()
197197
{

Source/Fuse.Elements/Resources/FileImageSource.uno

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ namespace Fuse.Resources
145145
public float Density { get { return _proxy.Density; } set { _proxy.Density = value; } }
146146
}
147147

148-
[extern(ANDROID) Require("Source.Include", "Uno/Graphics/GLHelper.h")]
148+
[extern(ANDROID) Require("Source.Include", "uDroid/GLHelper.h")]
149149
class FileImageSourceImpl : LoadingImageSource
150150
{
151151
FileSource _file;

Source/Fuse.Platform/Android/SystemUI.uno

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -544,14 +544,14 @@ namespace Fuse.Platform
544544
@}
545545

546546

547-
[Require("Source.Include", "Uno/Graphics/GLHelper.h")]
547+
[Require("Source.Include", "uDroid/GLHelper.h")]
548548
static void cppOnConfigChanged()
549549
{
550550
extern "GLHelper::SwapBackToBackgroundSurface()";
551551
ResetGeometry();
552552
}
553553

554-
[Require("Source.Include", "Uno/Graphics/GLHelper.h")]
554+
[Require("Source.Include", "uDroid/GLHelper.h")]
555555
static void ResetGeometry()
556556
{
557557
extern "GLHelper::SwapBackToBackgroundSurface()";

0 commit comments

Comments
 (0)