I'm looking for an example of loading a png-file on MonoDroid using OpenTK. Anyone?

Thanks!

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Put TexLib into your code and do the following:

  1. save the texture into your Assets folder and give it the Build Action "AndroidAsset"
  2. Add the following function to the TexLib.cs:

    public static int CreateTextureFromStream (InputStream stream)
     {
         return CreateTextureFromBitmap (new Bitmap (Bitmap.FromStream (stream)));
     }
    
  3. Call the function with your asset:

    int textureId = TexUtil.CreateTextureFromStream (Assets.Open ("my_texture.png"));
    
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.