diff --git a/os_traits/hw/gpu/resolution.py b/os_traits/hw/gpu/resolution.py new file mode 100644 index 0000000..ec52ab5 --- /dev/null +++ b/os_traits/hw/gpu/resolution.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- + +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + + +TRAITS = [ + # ref: https://en.wikipedia.org/wiki/Display_resolution + 'W320H240', + 'W640H480', + 'W800H600', + 'W1024H600', + 'W1024H768', + 'W1152H864', + 'W1280H720', + 'W1280H768', + 'W1280H800', + 'W1280H1024', + 'W1360H768', + 'W1366H768', + 'W1440H900', + 'W1600H900', + 'W1600H1200', + 'W1680H1050', + 'W1920H1080', + 'W1920H1200', + 'W2560H1440', + 'W2560H1600', + 'W3840H2160', + 'W7680H4320', +] diff --git a/os_traits/tests/test_os_traits.py b/os_traits/tests/test_os_traits.py index db7b5fd..2842fb6 100644 --- a/os_traits/tests/test_os_traits.py +++ b/os_traits/tests/test_os_traits.py @@ -17,6 +17,7 @@ import re import os_traits as ot from os_traits.hw.cpu import x86 from os_traits.hw.gpu import api +from os_traits.hw.gpu import resolution from os_traits.hw.nic import offload from os_traits.tests import base @@ -33,6 +34,8 @@ class TestSymbols(base.TestCase): # And the "leaf-module" namespace... self.assertEqual(x86.SSE42, ot.HW_CPU_X86_SSE42) self.assertEqual(api.DIRECTX_V10, ot.HW_GPU_API_DIRECTX_V10) + self.assertEqual(resolution.W1920H1080, + ot.HW_GPU_RESOLUTION_W1920H1080) self.assertEqual(offload.TSO, ot.HW_NIC_OFFLOAD_TSO) def test_get_traits(self):