File: gl_version_info_unittest.cc

package info (click to toggle)
chromium 138.0.7204.157-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 6,071,864 kB
  • sloc: cpp: 34,936,859; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,967; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (133 lines) | stat: -rw-r--r-- 6,163 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/gl/gl_version_info.h"

#include <array>
#include <string_view>

#include "testing/gtest/include/gtest/gtest.h"

namespace gl {

TEST(GLVersionInfoTest, ParseGLVersionStringTest) {
  struct GLVersionTestData {
    const std::string_view gl_version;
    unsigned expected_gl_major;
    unsigned expected_gl_minor;
    bool expected_is_es2;
    bool expected_is_es3;
    const std::string_view expected_driver_vendor;
    const std::string_view expected_driver_version;
  };
  static constexpr std::array<GLVersionTestData, 8> kTestData = {
      {{"OpenGL ES 3.0", 3, 0, false, true, "", ""},
       {"OpenGL ES 3.2 v1.r12p0-04rel0.44f2946824bb8739781564bffe2110c9", 3, 2,
        false, true, "ARM", "12.0.04rel0"},
       {"OpenGL ES 3.0 V@84.0 AU@05.00.00.046.002 (CL@)", 3, 0, false, true, "",
        "84.0"},
       {"OpenGL ES 2.0 build 1.12@2701748", 2, 0, true, false, "", "1.12"},
       {"OpenGL ES 3.1 V6.2.4.138003", 3, 1, false, true, "", "6.2.4.138003"},
       {"OpenGL ES 3.0 Mesa 12.0.3 (git-8b8f097)", 3, 0, false, true, "Mesa",
        "12.0.3"},
       {"OpenGL ES 3.0 SwiftShader 4.1.0.7", 3, 0, false, true, "", "4.1.0.7"},
       // This is a non spec compliant string from Nexus6 on Android N.
       {"OpenGL ES 3.1V@104.0", 3, 1, false, true, "", "104.0"}}};

  gfx::ExtensionSet extensions;
  for (const auto& test_case : kTestData) {
    GLVersionInfo version_info(test_case.gl_version.data(), nullptr,
                               extensions);
    EXPECT_EQ(test_case.expected_gl_major, version_info.major_version);
    EXPECT_EQ(test_case.expected_gl_minor, version_info.minor_version);
    EXPECT_EQ(test_case.expected_is_es2, version_info.is_es2);
    EXPECT_EQ(test_case.expected_is_es3, version_info.is_es3);
    EXPECT_STREQ(test_case.expected_driver_vendor.data(),
                 version_info.driver_vendor.c_str());
    EXPECT_STREQ(test_case.expected_driver_version.data(),
                 version_info.driver_version.c_str());
  }
}

TEST(GLVersionInfoTest, DriverVendorForANGLE) {
  struct GLVersionTestData {
    const std::string_view gl_version;
    const std::string_view gl_renderer;
    unsigned expected_gl_major;
    unsigned expected_gl_minor;
    bool expected_is_es2;
    bool expected_is_es3;
    bool expected_is_d3d;
    const std::string_view expected_driver_vendor;
    const std::string_view expected_driver_version;
  };
  static constexpr std::array<GLVersionTestData, 12> kTestData = {
      {{"OpenGL ES 2.0.0 (ANGLE 2.1.4875 git hash: 32e78475b1c0)",
        "ANGLE (Intel Inc., Intel(R) UHD Graphics 630, OpenGL 4.1 "
        "INTEL-14.7.11)",
        2, 0, true, false, false, "INTEL", "14.7.11"},
       {"OpenGL ES 2.0.0 (ANGLE 2.1.4875 git hash: 32e78475b1c0)",
        "ANGLE (ATI Technologies Inc., AMD Radeon Pro 560X OpenGL Engine, "
        "OpenGL 4.1 ATI-3.10.19)",
        2, 0, true, false, false, "ATI", "3.10.19"},
       {"OpenGL ES 2.0.0 (ANGLE 2.1.4875 git hash: 32e78475b1c0)",
        "ANGLE (AMD, Metal Renderer: AMD Radeon Pro 560X, Version 10.15.7 "
        "(Build 19H114))",
        2, 0, true, false, false, "AMD", "10.15.7"},
       {"OpenGL ES 2.0.0 (ANGLE 2.1.4875 git hash: 32e78475b1c0)",
        "ANGLE (Mesa/X.org, llvmpipe (LLVM 11.0.0 256 bits), OpenGL 4.5 (Core "
        "Profile) Mesa 20.2.4)",
        2, 0, true, false, false, "Mesa", "20.2.4"},
       {"OpenGL ES 2.0.0 (ANGLE 2.1.4875 git hash: 32e78475b1c0)",
        "ANGLE (Apple, Apple A12Z, OpenGL 4.1 Metal - 70.12.7)", 2, 0, true,
        false, false, "Apple", "70.12.7"},
       {"OpenGL ES 2.0.0 (ANGLE 2.1.4875 git hash: 32e78475b1c0)",
        "ANGLE (NVIDIA Corporation, Quadro P1000/PCIe/SSE2, OpenGL 4.5.0 "
        "NVIDIA "
        "440.100)",
        2, 0, true, false, false, "NVIDIA", "440.100"},
       {"OpenGL ES 2.0.0 (ANGLE 2.1.4875 git hash: 32e78475b1c0)",
        "ANGLE (NVIDIA, Vulkan 1.1.119 (NVIDIA Quadro P1000 (0x00001CB1)), "
        "NVIDIA-440.400.0)",
        2, 0, true, false, false, "NVIDIA", "440.400.0"},
       {"OpenGL ES 2.0.0 (ANGLE 2.1.4875 git hash: 32e78475b1c0)",
        "ANGLE (NVIDIA, NVIDIA Quadro P1000 Direct3D11 vs_5_0 ps_5_0, "
        "D3D11-23.21.13.9077)",
        2, 0, true, false, true, "NVIDIA", "23.21.13.9077"},
       {"OpenGL ES 2.0.0 (ANGLE 2.1.4875 git hash: 32e78475b1c0)",
        "ANGLE (NVIDIA, NVIDIA Quadro P1000 Direct3D9Ex vs_3_0 ps_3_0, "
        "nvldumdx.dll-23.21.13.9077)",
        2, 0, true, false, true, "NVIDIA", "23.21.13.9077"},
       {"OpenGL ES 2.0.0 (ANGLE 2.1.4875 git hash: 32e78475b1c0)",
        "ANGLE (NVIDIA Corporation, Quadro P1000/PCIe/SSE2, OpenGL 4.5.0 "
        "NVIDIA "
        "390.77)",
        2, 0, true, false, false, "NVIDIA", "390.77"},
       {"OpenGL ES 2.0.0 (ANGLE 2.1.4875 git hash: 32e78475b1c0)",
        "ANGLE (NVIDIA, Vulkan 1.0.65 (NVIDIA Quadro P1000 (0x00001CB1)), "
        "NVIDIA-390.308.0)",
        2, 0, true, false, false, "NVIDIA", "390.308.0"},
       {"OpenGL ES 2.0.0 (ANGLE 2.1.4875 git hash: 32e78475b1c0)",
        "ANGLE (Google, Vulkan 1.1.0 (SwiftShader Device (Subzero) "
        "(0x0000C0DE)), SwiftShader driver-5.0.0)",
        2, 0, true, false, false, "Google", "5.0.0"}}};

  gfx::ExtensionSet extensions;
  for (const auto& test_case : kTestData) {
    GLVersionInfo version_info(test_case.gl_version.data(),
                               test_case.gl_renderer.data(), extensions);
    EXPECT_TRUE(version_info.is_angle);

    EXPECT_EQ(test_case.expected_gl_major, version_info.major_version);
    EXPECT_EQ(test_case.expected_gl_minor, version_info.minor_version);
    EXPECT_EQ(test_case.expected_is_es2, version_info.is_es2);
    EXPECT_EQ(test_case.expected_is_es3, version_info.is_es3);
    EXPECT_EQ(test_case.expected_is_d3d, version_info.is_d3d);
    EXPECT_STREQ(test_case.expected_driver_vendor.data(),
                 version_info.driver_vendor.c_str());
    EXPECT_STREQ(test_case.expected_driver_version.data(),
                 version_info.driver_version.c_str());
  }
}
}