Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Side by Side Diff: gpu/vulkan/tests/basic_vulkan_test.h

Issue 1975183003: Added Vulkan Shader Modules with GLSL->SPIR-V translation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Check padding Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gpu/vulkan/BUILD.gn ('k') | gpu/vulkan/tests/basic_vulkan_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef GPU_VULKAN_TESTS_BASIC_VULKAN_TEST_H_
6 #define GPU_VULKAN_TESTS_BASIC_VULKAN_TEST_H_
7
8 #include "gpu/vulkan/vulkan_device_queue.h"
9 #include "testing/gtest/include/gtest/gtest.h"
10 #include "ui/gfx/native_widget_types.h"
11
12 namespace gpu {
13
14 class BasicVulkanTest : public testing::Test {
15 public:
16 void SetUp() override;
17 void TearDown() override;
18
19 gfx::AcceleratedWidget window() const { return window_; }
20 VulkanDeviceQueue* GetDeviceQueue() { return &device_queue_; }
21
22 private:
23 VulkanDeviceQueue device_queue_;
24 gfx::AcceleratedWidget window_ = gfx::kNullAcceleratedWidget;
25 };
26
27 } // namespace gpu
28
29 #endif // GPU_VULKAN_TESTS_BASIC_VULKAN_TEST_H_
OLDNEW
« no previous file with comments | « gpu/vulkan/BUILD.gn ('k') | gpu/vulkan/tests/basic_vulkan_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698