apple2js/test/js/__mocks__/apple2shader.js
Will Scullin af57378852
Videomode refactor 2 (#80)
Remove globals from video implementations to allow further refactoring. Experiment with testing video modes.
2021-05-25 12:08:10 -07:00

19 lines
401 B
JavaScript

export const screenEmu = (function () {
return {
C: {
NTSC_DETAILS: {
imageSize: {
width: 560,
height: 192,
},
},
},
DisplayConfiguration: class {},
Point: class {},
ScreenView: class {
initOpenGL() {}
},
Size: class{},
};
})();