1 // 2 // Copyright 2018 The ANGLE Project Authors. All rights reserved. 3 // Use of this source code is governed by a BSD-style license that can be 4 // found in the LICENSE file. 5 // 6 // WindowSurfaceVkAndroid.h: 7 // Defines the class interface for WindowSurfaceVkAndroid, implementing WindowSurfaceVk. 8 // 9 10 #ifndef LIBANGLE_RENDERER_VULKAN_ANDROID_WINDOWSURFACEVKANDROID_H_ 11 #define LIBANGLE_RENDERER_VULKAN_ANDROID_WINDOWSURFACEVKANDROID_H_ 12 13 #include "libANGLE/renderer/vulkan/SurfaceVk.h" 14 15 namespace rx 16 { 17 18 class WindowSurfaceVkAndroid : public WindowSurfaceVk 19 { 20 public: 21 WindowSurfaceVkAndroid(const egl::SurfaceState &surfaceState, EGLNativeWindowType window); 22 23 private: 24 angle::Result createSurfaceVk(vk::ErrorContext *context) override; 25 angle::Result getCurrentWindowSize(vk::ErrorContext *context, 26 gl::Extents *extentsOut) const override; 27 }; 28 29 } // namespace rx 30 31 #endif // LIBANGLE_RENDERER_VULKAN_ANDROID_WINDOWSURFACEVKANDROID_H_ 32