I think it would be very useful if there was a game engine that works like any other game engine (such as Unity, for example), but has the capability of you inserting native OpenGL code. Like for example, you could insert the following lines of code (simple, just for example) and it would work like it would in an OpenGL application, but it would run side-by-side the game engine's code:
glColor3f(1.0f, 0.0f, 0.0f);
glBegin(GL_TRIANGLES);
glVertex3f(0.0f, 0.0f, 0.0f);
glVertex3f(1.0f, 0.0f, 0.0f);
glVertex3f(1.0f, 1.0f, 0.0f);
glEnd();
glFlush();
