lib/gamnit: intro GNU/Linux support
[nit.git] / lib / gamnit / display.nit
1 # This file is part of NIT (http://www.nitlanguage.org).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Abstract display services
16 module display
17
18 import ::glesv2
19
20 import display_linux is conditional(linux)
21
22 # Should Gamnit be more verbose?
23 fun debug_gamnit: Bool do return false
24
25 # General display class, is sized and drawable
26 class GamnitDisplay
27
28 # Width of the display, in pixels
29 fun width: Int is abstract
30
31 # Height of the display, in pixels
32 fun height: Int is abstract
33
34 # Prepare this display
35 #
36 # The implementation varies per platform.
37 fun setup is abstract
38
39 # Close this display and free underlying resources
40 #
41 # The implementation varies per platform.
42 fun close do end
43
44 # Flip the display buffers
45 #
46 # The implementation varies per platform.
47 fun flip do end
48 end