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

gpu / config / gpu_info_collector_gl_test.cc [blame]

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <vector>

#include "gpu/config/gpu_info_collector.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/gl/gl_bindings.h"
#include "ui/gl/init/gl_factory.h"

namespace gpu {

#if BUILDFLAG(DAWN_ENABLE_BACKEND_OPENGLES)
TEST(GPUConfig, CollectGraphicsInfoDawnGLES) {
  EGLContext contextBefore = eglGetCurrentContext();

  GpuPreferences gpu_preferences;
  std::vector<std::string> dawn_info_list;
  CollectDawnInfo(gpu_preferences, true, &dawn_info_list);

  CollectDawnInfo(gpu_preferences, false, &dawn_info_list);
  EGLContext contextAfter = eglGetCurrentContext();
  EXPECT_TRUE(contextBefore == contextAfter);
}
#endif  // BUILDFLAG(DAWN_ENABLE_BACKEND_OPENGLES)

}  // namespace gpu