| // |
| // Copyright 2018 The ANGLE Project Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| // |
| // WindowSurfaceVkAndroid.cpp: |
| // Implements the class methods for WindowSurfaceVkAndroid. |
| // |
| |
| #include "libANGLE/renderer/vulkan/android/WindowSurfaceVkAndroid.h" |
| |
| #include <android/native_window.h> |
| |
| #include "libANGLE/renderer/vulkan/RendererVk.h" |
| |
| namespace rx |
| { |
| |
| WindowSurfaceVkAndroid::WindowSurfaceVkAndroid(const egl::SurfaceState &surfaceState, |
| EGLNativeWindowType window, |
| EGLint width, |
| EGLint height) |
| : WindowSurfaceVk(surfaceState, window, width, height) |
| {} |
| |
| angle::Result WindowSurfaceVkAndroid::createSurfaceVk(vk::Context *context, gl::Extents *extentsOut) |
| { |
| VkAndroidSurfaceCreateInfoKHR createInfo = {}; |
| |
| createInfo.sType = VK_STRUCTURE_TYPE_ANDROID_SURFACE_CREATE_INFO_KHR; |
| createInfo.flags = 0; |
| createInfo.window = mNativeWindowType; |
| ANGLE_VK_TRY(context, vkCreateAndroidSurfaceKHR(context->getRenderer()->getInstance(), |
| &createInfo, nullptr, &mSurface)); |
| |
| return getCurrentWindowSize(context, extentsOut); |
| } |
| |
| angle::Result WindowSurfaceVkAndroid::getCurrentWindowSize(vk::Context *context, |
| gl::Extents *extentsOut) |
| { |
| int32_t width = ANativeWindow_getWidth(mNativeWindowType); |
| int32_t height = ANativeWindow_getHeight(mNativeWindowType); |
| ANGLE_VK_CHECK(context, width > 0 && height > 0, VK_ERROR_INITIALIZATION_FAILED); |
| |
| *extentsOut = gl::Extents(width, height, 1); |
| return angle::Result::Continue; |
| } |
| |
| } // namespace rx |