|
Re: A wild engine appears!
[Re: the_clown]
#448342
01/30/15 12:24
01/30/15 12:24
|
Joined: Nov 2007
Posts: 2,568 Germany, BW, Stuttgart
MasterQ32
OP
Expert
|
OP
Expert
Joined: Nov 2007
Posts: 2,568
Germany, BW, Stuttgart
|
Heavy is "wrapper" terms. OpenTK is pretty much a thin wrapper where every function is wrapped like this:
void function(...)
{
glGetErrror(); // Reset error
GL.function(...);
checkErrorAndThrowExceptionIfAny(glGetError());
}
Heavy means that it abstracts stuff away (like window creation under different OS). You just create a new GameWindow object and you have a window open. In terms of usability, this is awesome 
|
|
|
|