C# software development with OpenGL ES
I'm making a kind of music program mostly for entertainment value, using C# and OpenGL ES. I'm calling into Windows Media Player from my program.
I come from pre-existing 3D engines, so I'm just wondering what the best way to draw a pixel-precise image to the screen in OpenGL is - IE if I have a 64x64 bitmap and place it at 0, 0, I expect it to go from 0, 0 to 63, 63 and that's it. This way I can detect when the image has been touched - thus a bitmap button.
I tried using GDI, but it flickered terribly with the OpenGL rendering, even after placing the draw call after the OpenGL rendering was complete.
Does anyone have any pointers for me? Thanks in advance and thanks to the community for everything.
|