MCPcopy Create free account
hub / github.com/atraczyk/2d-engine / VideoMode

Class VideoMode

engine/src/program.h:23–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21#define NUM_MODES 4
22
23class VideoMode
24{
25public:
26 int width;
27 int height;
28 int bpp;
29
30 VideoMode (){};
31 VideoMode (int w, int h, int bd)
32 {
33 width = w;
34 height = h;
35 bpp = bd;
36 };
37 ~VideoMode (){};
38};
39
40class GLWindow
41{

Callers 1

initializeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected