OpenGL on Borland C++ Builder TImage control

Is it possible to draw with OpenGL on C++
Builder TImage control?

Never tried, but I think it isn’t. TImage is not derived from TWinControl, so it doesn’t have its own Handle, and it’s actually reusing HDC of its parent control when drawing. Use TPanel or just draw to TForm. Or create own subclass of TWinControl.