Examples with animated model? Maybe I missed it, didnt find. Will look again.
Examples with animated model? Maybe I missed it, didnt find. Will look again.


fixed on the image data
byte[] cause thats what it is lol
_texture.Bind() should be it
uTexture in your shader before binding the texture, i would try that first)


unmanaged and so i just store a pointerfixedbyte[]_texture.Bind()uTextureunmanagedfixed (byte* ptr = img.Data)
_gl.TexImage2D(..., ptr);fixed (byte* ptr = Encoding.UTF8.GetBytes("text"))
// things with ptrpublic class Thing
{
void* whatever;
public Thing(byte[] stuff)
{
fixed (void* ptr = stuff)
whatever = ptr;
}
}