├── .gitattributes ├── .gitignore ├── Doc └── Ooogles.chm ├── DocSource ├── Build.bat ├── BuildHtml.bat ├── BuildHtmlHelp.bat ├── Html.css ├── HtmlHelp.css ├── conclusion.txt ├── introduction.txt └── sources.txt ├── Examples ├── 01.HelloTriangle │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E01HelloTriangle.dpr │ ├── E01HelloTriangle.dproj │ ├── E01HelloTriangle.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 02.SimpleVertexShader │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E02SimpleVertexShader.dpr │ ├── E02SimpleVertexShader.dproj │ ├── E02SimpleVertexShader.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 03.SimpleTexture2D │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E03SimpleTexture2D.dpr │ ├── E03SimpleTexture2D.dproj │ ├── E03SimpleTexture2D.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 04.MipMap2D │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E04MipMap2D.dpr │ ├── E04MipMap2D.dproj │ ├── E04MipMap2D.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 05.TextureWrap │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E05TextureWrap.dpr │ ├── E05TextureWrap.dproj │ ├── E05TextureWrap.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 06.SimpleTextureCubeMap │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E06SimpleTextureCubeMap.dpr │ ├── E06SimpleTextureCubeMap.dproj │ ├── E06SimpleTextureCubeMap.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 07.MultiTexture │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E07MultiTexture.dpr │ ├── E07MultiTexture.dproj │ ├── E07MultiTexture.dres │ ├── E07MultiTexture.res │ ├── E07MultiTextureResource.rc │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── assets │ │ └── assets.zip │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 08.StencilOperations │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E08StencilOperations.dpr │ ├── E08StencilOperations.dproj │ ├── E08StencilOperations.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 09.ParticleSystem │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E09ParticleSystem.dpr │ ├── E09ParticleSystem.dproj │ ├── E09ParticleSystem.dres │ ├── E09ParticleSystem.res │ ├── E09ParticleSystemResource.rc │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── assets │ │ └── assets.zip │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 10.Mandelbrot │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E10Mandelbrot.dpr │ ├── E10Mandelbrot.dproj │ ├── E10Mandelbrot.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 11.CartoonSun │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E11CartoonSun.dpr │ ├── E11CartoonSun.dproj │ ├── E11CartoonSun.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 12.StripedCubes │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E12StripedCubes.dpr │ ├── E12StripedCubes.dproj │ ├── E12StripedCubes.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 13.CartoonTorus │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E13CartoonTorus.dpr │ ├── E13CartoonTorus.dproj │ ├── E13CartoonTorus.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 14.MetallicTorus │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E14MetallicTorus.dpr │ ├── E14MetallicTorus.dproj │ ├── E14MetallicTorus.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 15.NoiseTorus │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E15NoiseTorus.dpr │ ├── E15NoiseTorus.dproj │ ├── E15NoiseTorus.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 16.PhongTorus │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E16PhongTorus.dpr │ ├── E16PhongTorus.dproj │ ├── E16PhongTorus.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 17.Helium │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E17Helium.dpr │ ├── E17Helium.dproj │ ├── E17Helium.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 18.CubeMapping │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E18CubeMapping.dpr │ ├── E18CubeMapping.dproj │ ├── E18CubeMapping.dres │ ├── E18CubeMapping.res │ ├── E18CubeMappingResource.rc │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── assets │ │ └── assets.zip │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 19.ShadedObjects │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E19ShadedObjects.dpr │ ├── E19ShadedObjects.dproj │ ├── E19ShadedObjects.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 20.Morphing │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E20Morphing.dpr │ ├── E20Morphing.dproj │ ├── E20Morphing.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 21.ParallaxMap │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E21ParallaxMap.dpr │ ├── E21ParallaxMap.dproj │ ├── E21ParallaxMap.dres │ ├── E21ParallaxMap.res │ ├── E21ParallaxMapResource.rc │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── assets │ │ └── assets.zip │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── 22.RecursiveTexture │ ├── AndroidManifest.template.xml │ ├── App.pas │ ├── E22RecursiveTexture.dpr │ ├── E22RecursiveTexture.dproj │ ├── E22RecursiveTexture.res │ ├── Entitlement.TemplateOSX32.xml │ ├── Entitlement.TemplateiOS.xml │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── Common │ ├── Sample.App.pas │ ├── Sample.Assets.pas │ ├── Sample.Geometry.pas │ ├── Sample.Math.pas │ ├── Sample.Platform.Android.pas │ ├── Sample.Platform.Mac.pas │ ├── Sample.Platform.Windows.pas │ ├── Sample.Platform.iOS.pas │ ├── Sample.Platform.pas │ ├── Sample.Targa.pas │ ├── Sample.Texture.pas │ └── Sample.inc └── Examples.groupproj ├── License.txt ├── README.md └── Source ├── Neslib.Ooogles.pas ├── Ooogles.inc └── OpenGL.inc /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/.gitignore -------------------------------------------------------------------------------- /Doc/Ooogles.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Doc/Ooogles.chm -------------------------------------------------------------------------------- /DocSource/Build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/DocSource/Build.bat -------------------------------------------------------------------------------- /DocSource/BuildHtml.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/DocSource/BuildHtml.bat -------------------------------------------------------------------------------- /DocSource/BuildHtmlHelp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/DocSource/BuildHtmlHelp.bat -------------------------------------------------------------------------------- /DocSource/Html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/DocSource/Html.css -------------------------------------------------------------------------------- /DocSource/HtmlHelp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/DocSource/HtmlHelp.css -------------------------------------------------------------------------------- /DocSource/conclusion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/DocSource/conclusion.txt -------------------------------------------------------------------------------- /DocSource/introduction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/DocSource/introduction.txt -------------------------------------------------------------------------------- /DocSource/sources.txt: -------------------------------------------------------------------------------- 1 | ..\Source\Neslib.Ooogles.pas -------------------------------------------------------------------------------- /Examples/01.HelloTriangle/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/01.HelloTriangle/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/01.HelloTriangle/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/01.HelloTriangle/App.pas -------------------------------------------------------------------------------- /Examples/01.HelloTriangle/E01HelloTriangle.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/01.HelloTriangle/E01HelloTriangle.dpr -------------------------------------------------------------------------------- /Examples/01.HelloTriangle/E01HelloTriangle.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/01.HelloTriangle/E01HelloTriangle.dproj -------------------------------------------------------------------------------- /Examples/01.HelloTriangle/E01HelloTriangle.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/01.HelloTriangle/E01HelloTriangle.res -------------------------------------------------------------------------------- /Examples/01.HelloTriangle/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/01.HelloTriangle/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/01.HelloTriangle/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/01.HelloTriangle/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/01.HelloTriangle/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/01.HelloTriangle/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/01.HelloTriangle/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/01.HelloTriangle/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/02.SimpleVertexShader/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/02.SimpleVertexShader/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/02.SimpleVertexShader/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/02.SimpleVertexShader/App.pas -------------------------------------------------------------------------------- /Examples/02.SimpleVertexShader/E02SimpleVertexShader.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/02.SimpleVertexShader/E02SimpleVertexShader.dpr -------------------------------------------------------------------------------- /Examples/02.SimpleVertexShader/E02SimpleVertexShader.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/02.SimpleVertexShader/E02SimpleVertexShader.dproj -------------------------------------------------------------------------------- /Examples/02.SimpleVertexShader/E02SimpleVertexShader.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/02.SimpleVertexShader/E02SimpleVertexShader.res -------------------------------------------------------------------------------- /Examples/02.SimpleVertexShader/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/02.SimpleVertexShader/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/02.SimpleVertexShader/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/02.SimpleVertexShader/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/02.SimpleVertexShader/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/02.SimpleVertexShader/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/02.SimpleVertexShader/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/02.SimpleVertexShader/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/03.SimpleTexture2D/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/03.SimpleTexture2D/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/03.SimpleTexture2D/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/03.SimpleTexture2D/App.pas -------------------------------------------------------------------------------- /Examples/03.SimpleTexture2D/E03SimpleTexture2D.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/03.SimpleTexture2D/E03SimpleTexture2D.dpr -------------------------------------------------------------------------------- /Examples/03.SimpleTexture2D/E03SimpleTexture2D.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/03.SimpleTexture2D/E03SimpleTexture2D.dproj -------------------------------------------------------------------------------- /Examples/03.SimpleTexture2D/E03SimpleTexture2D.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/03.SimpleTexture2D/E03SimpleTexture2D.res -------------------------------------------------------------------------------- /Examples/03.SimpleTexture2D/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/03.SimpleTexture2D/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/03.SimpleTexture2D/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/03.SimpleTexture2D/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/03.SimpleTexture2D/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/03.SimpleTexture2D/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/03.SimpleTexture2D/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/03.SimpleTexture2D/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/04.MipMap2D/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/04.MipMap2D/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/04.MipMap2D/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/04.MipMap2D/App.pas -------------------------------------------------------------------------------- /Examples/04.MipMap2D/E04MipMap2D.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/04.MipMap2D/E04MipMap2D.dpr -------------------------------------------------------------------------------- /Examples/04.MipMap2D/E04MipMap2D.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/04.MipMap2D/E04MipMap2D.dproj -------------------------------------------------------------------------------- /Examples/04.MipMap2D/E04MipMap2D.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/04.MipMap2D/E04MipMap2D.res -------------------------------------------------------------------------------- /Examples/04.MipMap2D/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/04.MipMap2D/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/04.MipMap2D/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/04.MipMap2D/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/04.MipMap2D/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/04.MipMap2D/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/04.MipMap2D/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/04.MipMap2D/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/05.TextureWrap/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/05.TextureWrap/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/05.TextureWrap/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/05.TextureWrap/App.pas -------------------------------------------------------------------------------- /Examples/05.TextureWrap/E05TextureWrap.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/05.TextureWrap/E05TextureWrap.dpr -------------------------------------------------------------------------------- /Examples/05.TextureWrap/E05TextureWrap.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/05.TextureWrap/E05TextureWrap.dproj -------------------------------------------------------------------------------- /Examples/05.TextureWrap/E05TextureWrap.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/05.TextureWrap/E05TextureWrap.res -------------------------------------------------------------------------------- /Examples/05.TextureWrap/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/05.TextureWrap/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/05.TextureWrap/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/05.TextureWrap/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/05.TextureWrap/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/05.TextureWrap/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/05.TextureWrap/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/05.TextureWrap/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/06.SimpleTextureCubeMap/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/06.SimpleTextureCubeMap/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/06.SimpleTextureCubeMap/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/06.SimpleTextureCubeMap/App.pas -------------------------------------------------------------------------------- /Examples/06.SimpleTextureCubeMap/E06SimpleTextureCubeMap.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/06.SimpleTextureCubeMap/E06SimpleTextureCubeMap.dpr -------------------------------------------------------------------------------- /Examples/06.SimpleTextureCubeMap/E06SimpleTextureCubeMap.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/06.SimpleTextureCubeMap/E06SimpleTextureCubeMap.dproj -------------------------------------------------------------------------------- /Examples/06.SimpleTextureCubeMap/E06SimpleTextureCubeMap.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/06.SimpleTextureCubeMap/E06SimpleTextureCubeMap.res -------------------------------------------------------------------------------- /Examples/06.SimpleTextureCubeMap/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/06.SimpleTextureCubeMap/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/06.SimpleTextureCubeMap/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/06.SimpleTextureCubeMap/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/06.SimpleTextureCubeMap/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/06.SimpleTextureCubeMap/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/06.SimpleTextureCubeMap/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/06.SimpleTextureCubeMap/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/07.MultiTexture/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/07.MultiTexture/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/07.MultiTexture/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/07.MultiTexture/App.pas -------------------------------------------------------------------------------- /Examples/07.MultiTexture/E07MultiTexture.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/07.MultiTexture/E07MultiTexture.dpr -------------------------------------------------------------------------------- /Examples/07.MultiTexture/E07MultiTexture.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/07.MultiTexture/E07MultiTexture.dproj -------------------------------------------------------------------------------- /Examples/07.MultiTexture/E07MultiTexture.dres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/07.MultiTexture/E07MultiTexture.dres -------------------------------------------------------------------------------- /Examples/07.MultiTexture/E07MultiTexture.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/07.MultiTexture/E07MultiTexture.res -------------------------------------------------------------------------------- /Examples/07.MultiTexture/E07MultiTextureResource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/07.MultiTexture/E07MultiTextureResource.rc -------------------------------------------------------------------------------- /Examples/07.MultiTexture/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/07.MultiTexture/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/07.MultiTexture/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/07.MultiTexture/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/07.MultiTexture/assets/assets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/07.MultiTexture/assets/assets.zip -------------------------------------------------------------------------------- /Examples/07.MultiTexture/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/07.MultiTexture/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/07.MultiTexture/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/07.MultiTexture/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/08.StencilOperations/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/08.StencilOperations/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/08.StencilOperations/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/08.StencilOperations/App.pas -------------------------------------------------------------------------------- /Examples/08.StencilOperations/E08StencilOperations.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/08.StencilOperations/E08StencilOperations.dpr -------------------------------------------------------------------------------- /Examples/08.StencilOperations/E08StencilOperations.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/08.StencilOperations/E08StencilOperations.dproj -------------------------------------------------------------------------------- /Examples/08.StencilOperations/E08StencilOperations.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/08.StencilOperations/E08StencilOperations.res -------------------------------------------------------------------------------- /Examples/08.StencilOperations/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/08.StencilOperations/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/08.StencilOperations/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/08.StencilOperations/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/08.StencilOperations/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/08.StencilOperations/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/08.StencilOperations/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/08.StencilOperations/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/09.ParticleSystem/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/09.ParticleSystem/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/09.ParticleSystem/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/09.ParticleSystem/App.pas -------------------------------------------------------------------------------- /Examples/09.ParticleSystem/E09ParticleSystem.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/09.ParticleSystem/E09ParticleSystem.dpr -------------------------------------------------------------------------------- /Examples/09.ParticleSystem/E09ParticleSystem.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/09.ParticleSystem/E09ParticleSystem.dproj -------------------------------------------------------------------------------- /Examples/09.ParticleSystem/E09ParticleSystem.dres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/09.ParticleSystem/E09ParticleSystem.dres -------------------------------------------------------------------------------- /Examples/09.ParticleSystem/E09ParticleSystem.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/09.ParticleSystem/E09ParticleSystem.res -------------------------------------------------------------------------------- /Examples/09.ParticleSystem/E09ParticleSystemResource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/09.ParticleSystem/E09ParticleSystemResource.rc -------------------------------------------------------------------------------- /Examples/09.ParticleSystem/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/09.ParticleSystem/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/09.ParticleSystem/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/09.ParticleSystem/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/09.ParticleSystem/assets/assets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/09.ParticleSystem/assets/assets.zip -------------------------------------------------------------------------------- /Examples/09.ParticleSystem/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/09.ParticleSystem/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/09.ParticleSystem/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/09.ParticleSystem/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/10.Mandelbrot/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/10.Mandelbrot/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/10.Mandelbrot/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/10.Mandelbrot/App.pas -------------------------------------------------------------------------------- /Examples/10.Mandelbrot/E10Mandelbrot.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/10.Mandelbrot/E10Mandelbrot.dpr -------------------------------------------------------------------------------- /Examples/10.Mandelbrot/E10Mandelbrot.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/10.Mandelbrot/E10Mandelbrot.dproj -------------------------------------------------------------------------------- /Examples/10.Mandelbrot/E10Mandelbrot.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/10.Mandelbrot/E10Mandelbrot.res -------------------------------------------------------------------------------- /Examples/10.Mandelbrot/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/10.Mandelbrot/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/10.Mandelbrot/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/10.Mandelbrot/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/10.Mandelbrot/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/10.Mandelbrot/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/10.Mandelbrot/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/10.Mandelbrot/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/11.CartoonSun/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/11.CartoonSun/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/11.CartoonSun/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/11.CartoonSun/App.pas -------------------------------------------------------------------------------- /Examples/11.CartoonSun/E11CartoonSun.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/11.CartoonSun/E11CartoonSun.dpr -------------------------------------------------------------------------------- /Examples/11.CartoonSun/E11CartoonSun.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/11.CartoonSun/E11CartoonSun.dproj -------------------------------------------------------------------------------- /Examples/11.CartoonSun/E11CartoonSun.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/11.CartoonSun/E11CartoonSun.res -------------------------------------------------------------------------------- /Examples/11.CartoonSun/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/11.CartoonSun/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/11.CartoonSun/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/11.CartoonSun/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/11.CartoonSun/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/11.CartoonSun/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/11.CartoonSun/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/11.CartoonSun/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/12.StripedCubes/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/12.StripedCubes/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/12.StripedCubes/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/12.StripedCubes/App.pas -------------------------------------------------------------------------------- /Examples/12.StripedCubes/E12StripedCubes.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/12.StripedCubes/E12StripedCubes.dpr -------------------------------------------------------------------------------- /Examples/12.StripedCubes/E12StripedCubes.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/12.StripedCubes/E12StripedCubes.dproj -------------------------------------------------------------------------------- /Examples/12.StripedCubes/E12StripedCubes.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/12.StripedCubes/E12StripedCubes.res -------------------------------------------------------------------------------- /Examples/12.StripedCubes/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/12.StripedCubes/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/12.StripedCubes/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/12.StripedCubes/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/12.StripedCubes/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/12.StripedCubes/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/12.StripedCubes/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/12.StripedCubes/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/13.CartoonTorus/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/13.CartoonTorus/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/13.CartoonTorus/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/13.CartoonTorus/App.pas -------------------------------------------------------------------------------- /Examples/13.CartoonTorus/E13CartoonTorus.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/13.CartoonTorus/E13CartoonTorus.dpr -------------------------------------------------------------------------------- /Examples/13.CartoonTorus/E13CartoonTorus.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/13.CartoonTorus/E13CartoonTorus.dproj -------------------------------------------------------------------------------- /Examples/13.CartoonTorus/E13CartoonTorus.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/13.CartoonTorus/E13CartoonTorus.res -------------------------------------------------------------------------------- /Examples/13.CartoonTorus/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/13.CartoonTorus/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/13.CartoonTorus/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/13.CartoonTorus/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/13.CartoonTorus/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/13.CartoonTorus/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/13.CartoonTorus/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/13.CartoonTorus/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/14.MetallicTorus/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/14.MetallicTorus/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/14.MetallicTorus/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/14.MetallicTorus/App.pas -------------------------------------------------------------------------------- /Examples/14.MetallicTorus/E14MetallicTorus.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/14.MetallicTorus/E14MetallicTorus.dpr -------------------------------------------------------------------------------- /Examples/14.MetallicTorus/E14MetallicTorus.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/14.MetallicTorus/E14MetallicTorus.dproj -------------------------------------------------------------------------------- /Examples/14.MetallicTorus/E14MetallicTorus.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/14.MetallicTorus/E14MetallicTorus.res -------------------------------------------------------------------------------- /Examples/14.MetallicTorus/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/14.MetallicTorus/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/14.MetallicTorus/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/14.MetallicTorus/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/14.MetallicTorus/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/14.MetallicTorus/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/14.MetallicTorus/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/14.MetallicTorus/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/15.NoiseTorus/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/15.NoiseTorus/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/15.NoiseTorus/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/15.NoiseTorus/App.pas -------------------------------------------------------------------------------- /Examples/15.NoiseTorus/E15NoiseTorus.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/15.NoiseTorus/E15NoiseTorus.dpr -------------------------------------------------------------------------------- /Examples/15.NoiseTorus/E15NoiseTorus.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/15.NoiseTorus/E15NoiseTorus.dproj -------------------------------------------------------------------------------- /Examples/15.NoiseTorus/E15NoiseTorus.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/15.NoiseTorus/E15NoiseTorus.res -------------------------------------------------------------------------------- /Examples/15.NoiseTorus/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/15.NoiseTorus/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/15.NoiseTorus/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/15.NoiseTorus/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/15.NoiseTorus/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/15.NoiseTorus/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/15.NoiseTorus/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/15.NoiseTorus/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/16.PhongTorus/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/16.PhongTorus/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/16.PhongTorus/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/16.PhongTorus/App.pas -------------------------------------------------------------------------------- /Examples/16.PhongTorus/E16PhongTorus.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/16.PhongTorus/E16PhongTorus.dpr -------------------------------------------------------------------------------- /Examples/16.PhongTorus/E16PhongTorus.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/16.PhongTorus/E16PhongTorus.dproj -------------------------------------------------------------------------------- /Examples/16.PhongTorus/E16PhongTorus.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/16.PhongTorus/E16PhongTorus.res -------------------------------------------------------------------------------- /Examples/16.PhongTorus/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/16.PhongTorus/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/16.PhongTorus/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/16.PhongTorus/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/16.PhongTorus/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/16.PhongTorus/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/16.PhongTorus/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/16.PhongTorus/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/17.Helium/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/17.Helium/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/17.Helium/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/17.Helium/App.pas -------------------------------------------------------------------------------- /Examples/17.Helium/E17Helium.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/17.Helium/E17Helium.dpr -------------------------------------------------------------------------------- /Examples/17.Helium/E17Helium.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/17.Helium/E17Helium.dproj -------------------------------------------------------------------------------- /Examples/17.Helium/E17Helium.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/17.Helium/E17Helium.res -------------------------------------------------------------------------------- /Examples/17.Helium/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/17.Helium/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/17.Helium/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/17.Helium/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/17.Helium/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/17.Helium/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/17.Helium/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/17.Helium/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/18.CubeMapping/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/18.CubeMapping/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/18.CubeMapping/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/18.CubeMapping/App.pas -------------------------------------------------------------------------------- /Examples/18.CubeMapping/E18CubeMapping.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/18.CubeMapping/E18CubeMapping.dpr -------------------------------------------------------------------------------- /Examples/18.CubeMapping/E18CubeMapping.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/18.CubeMapping/E18CubeMapping.dproj -------------------------------------------------------------------------------- /Examples/18.CubeMapping/E18CubeMapping.dres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/18.CubeMapping/E18CubeMapping.dres -------------------------------------------------------------------------------- /Examples/18.CubeMapping/E18CubeMapping.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/18.CubeMapping/E18CubeMapping.res -------------------------------------------------------------------------------- /Examples/18.CubeMapping/E18CubeMappingResource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/18.CubeMapping/E18CubeMappingResource.rc -------------------------------------------------------------------------------- /Examples/18.CubeMapping/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/18.CubeMapping/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/18.CubeMapping/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/18.CubeMapping/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/18.CubeMapping/assets/assets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/18.CubeMapping/assets/assets.zip -------------------------------------------------------------------------------- /Examples/18.CubeMapping/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/18.CubeMapping/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/18.CubeMapping/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/18.CubeMapping/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/19.ShadedObjects/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/19.ShadedObjects/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/19.ShadedObjects/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/19.ShadedObjects/App.pas -------------------------------------------------------------------------------- /Examples/19.ShadedObjects/E19ShadedObjects.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/19.ShadedObjects/E19ShadedObjects.dpr -------------------------------------------------------------------------------- /Examples/19.ShadedObjects/E19ShadedObjects.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/19.ShadedObjects/E19ShadedObjects.dproj -------------------------------------------------------------------------------- /Examples/19.ShadedObjects/E19ShadedObjects.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/19.ShadedObjects/E19ShadedObjects.res -------------------------------------------------------------------------------- /Examples/19.ShadedObjects/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/19.ShadedObjects/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/19.ShadedObjects/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/19.ShadedObjects/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/19.ShadedObjects/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/19.ShadedObjects/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/19.ShadedObjects/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/19.ShadedObjects/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/20.Morphing/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/20.Morphing/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/20.Morphing/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/20.Morphing/App.pas -------------------------------------------------------------------------------- /Examples/20.Morphing/E20Morphing.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/20.Morphing/E20Morphing.dpr -------------------------------------------------------------------------------- /Examples/20.Morphing/E20Morphing.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/20.Morphing/E20Morphing.dproj -------------------------------------------------------------------------------- /Examples/20.Morphing/E20Morphing.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/20.Morphing/E20Morphing.res -------------------------------------------------------------------------------- /Examples/20.Morphing/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/20.Morphing/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/20.Morphing/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/20.Morphing/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/20.Morphing/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/20.Morphing/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/20.Morphing/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/20.Morphing/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/21.ParallaxMap/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/21.ParallaxMap/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/21.ParallaxMap/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/21.ParallaxMap/App.pas -------------------------------------------------------------------------------- /Examples/21.ParallaxMap/E21ParallaxMap.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/21.ParallaxMap/E21ParallaxMap.dpr -------------------------------------------------------------------------------- /Examples/21.ParallaxMap/E21ParallaxMap.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/21.ParallaxMap/E21ParallaxMap.dproj -------------------------------------------------------------------------------- /Examples/21.ParallaxMap/E21ParallaxMap.dres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/21.ParallaxMap/E21ParallaxMap.dres -------------------------------------------------------------------------------- /Examples/21.ParallaxMap/E21ParallaxMap.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/21.ParallaxMap/E21ParallaxMap.res -------------------------------------------------------------------------------- /Examples/21.ParallaxMap/E21ParallaxMapResource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/21.ParallaxMap/E21ParallaxMapResource.rc -------------------------------------------------------------------------------- /Examples/21.ParallaxMap/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/21.ParallaxMap/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/21.ParallaxMap/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/21.ParallaxMap/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/21.ParallaxMap/assets/assets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/21.ParallaxMap/assets/assets.zip -------------------------------------------------------------------------------- /Examples/21.ParallaxMap/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/21.ParallaxMap/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/21.ParallaxMap/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/21.ParallaxMap/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/22.RecursiveTexture/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/22.RecursiveTexture/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Examples/22.RecursiveTexture/App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/22.RecursiveTexture/App.pas -------------------------------------------------------------------------------- /Examples/22.RecursiveTexture/E22RecursiveTexture.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/22.RecursiveTexture/E22RecursiveTexture.dpr -------------------------------------------------------------------------------- /Examples/22.RecursiveTexture/E22RecursiveTexture.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/22.RecursiveTexture/E22RecursiveTexture.dproj -------------------------------------------------------------------------------- /Examples/22.RecursiveTexture/E22RecursiveTexture.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/22.RecursiveTexture/E22RecursiveTexture.res -------------------------------------------------------------------------------- /Examples/22.RecursiveTexture/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/22.RecursiveTexture/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Examples/22.RecursiveTexture/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/22.RecursiveTexture/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/22.RecursiveTexture/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/22.RecursiveTexture/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Examples/22.RecursiveTexture/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/22.RecursiveTexture/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Examples/Common/Sample.App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/Common/Sample.App.pas -------------------------------------------------------------------------------- /Examples/Common/Sample.Assets.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/Common/Sample.Assets.pas -------------------------------------------------------------------------------- /Examples/Common/Sample.Geometry.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/Common/Sample.Geometry.pas -------------------------------------------------------------------------------- /Examples/Common/Sample.Math.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/Common/Sample.Math.pas -------------------------------------------------------------------------------- /Examples/Common/Sample.Platform.Android.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/Common/Sample.Platform.Android.pas -------------------------------------------------------------------------------- /Examples/Common/Sample.Platform.Mac.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/Common/Sample.Platform.Mac.pas -------------------------------------------------------------------------------- /Examples/Common/Sample.Platform.Windows.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/Common/Sample.Platform.Windows.pas -------------------------------------------------------------------------------- /Examples/Common/Sample.Platform.iOS.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/Common/Sample.Platform.iOS.pas -------------------------------------------------------------------------------- /Examples/Common/Sample.Platform.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/Common/Sample.Platform.pas -------------------------------------------------------------------------------- /Examples/Common/Sample.Targa.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/Common/Sample.Targa.pas -------------------------------------------------------------------------------- /Examples/Common/Sample.Texture.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/Common/Sample.Texture.pas -------------------------------------------------------------------------------- /Examples/Common/Sample.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/Common/Sample.inc -------------------------------------------------------------------------------- /Examples/Examples.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Examples/Examples.groupproj -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/README.md -------------------------------------------------------------------------------- /Source/Neslib.Ooogles.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Source/Neslib.Ooogles.pas -------------------------------------------------------------------------------- /Source/Ooogles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Source/Ooogles.inc -------------------------------------------------------------------------------- /Source/OpenGL.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neslib/Ooogles/HEAD/Source/OpenGL.inc --------------------------------------------------------------------------------