I tried compiling for Android and got this issue in OpenGLCube.cs ...
CS0104 'Bitmap' is an ambiguous reference between 'System.Drawing.Bitmap' and 'Android.Graphics.Bitmap'
Issue can be fixed on Line 290 with
Android.Graphics.Bitmap b = BitmapFactory.DecodeByteArray (imageData, 0, imageData.Length);
Nice, simple example ;-)
Thanks
Tim
I tried compiling for Android and got this issue in OpenGLCube.cs ...
CS0104 'Bitmap' is an ambiguous reference between 'System.Drawing.Bitmap' and 'Android.Graphics.Bitmap'Issue can be fixed on Line 290 with
Android.Graphics.Bitmap b = BitmapFactory.DecodeByteArray (imageData, 0, imageData.Length);Nice, simple example ;-)
Thanks
Tim