Created
September 16, 2022 07:09
-
-
Save daddyYukio/9f51968336ee19639931021d59900f90 to your computer and use it in GitHub Desktop.
スマホでVR写真表示アプリを作る(Xamarin) - OpenGLView
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using OpenTK; | |
using OpenTK.Graphics; | |
using OpenTK.Graphics.ES30; | |
using EquirectangularSample; | |
#if __ANDROID__ | |
using Android.Content; | |
using Android.Graphics; | |
using Android.Util; | |
using Android.Views; | |
using OpenTK.Platform.Android; | |
#endif | |
#if __IOS__ | |
using CoreGraphics; | |
using Foundation; | |
using ObjCRuntime; | |
using OpenGLES; | |
using OpenTK.Platform.iPhoneOS; | |
using UIKit; | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment