summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaiyi Li <kaiyili@google.com>2022-04-01 15:53:49 -0700
committerKaiyi Li <kaiyili@google.com>2022-04-01 15:53:49 -0700
commit71307b96e56b59c886785462518de8169a453210 (patch)
treeca4c53af6582d3b7e76dcc792342e5b826a39e3b
parent0eccf0a9b0179a560a8b1e9f23c227656b38b3c9 (diff)
downloadvulkan-cereal-71307b96e56b59c886785462518de8169a453210.tar.gz
Move the logging statements
Test: build Change-Id: Idabb6dfecc81175ded771b910154f079ba40d341
-rw-r--r--stream-servers/FrameBuffer.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/stream-servers/FrameBuffer.cpp b/stream-servers/FrameBuffer.cpp
index 57e27b9a..71a450f0 100644
--- a/stream-servers/FrameBuffer.cpp
+++ b/stream-servers/FrameBuffer.cpp
@@ -836,12 +836,6 @@ bool FrameBuffer::initialize(int width, int height, bool useSubWindow,
}
}
- INFO("Graphics Adapter Vendor %s", fb->m_graphicsAdapterVendor.c_str());
- INFO("Graphics Adapter %s", fb->m_graphicsAdapterName.c_str());
- INFO("Graphics API Version %s", fb->m_graphicsApiVersion.c_str());
- INFO("Graphics API Extensions %s", fb->m_graphicsApiExtensions.c_str());
- INFO("Graphics Device Extensions %s", fb->m_graphicsDeviceExtensions.c_str());
-
fb->m_textureDraw = new TextureDraw();
if (!fb->m_textureDraw) {
ERR("Failed: creation of TextureDraw instance");
@@ -872,6 +866,12 @@ bool FrameBuffer::initialize(int width, int height, bool useSubWindow,
}
}
+ INFO("Graphics Adapter Vendor %s", fb->m_graphicsAdapterVendor.c_str());
+ INFO("Graphics Adapter %s", fb->m_graphicsAdapterName.c_str());
+ INFO("Graphics API Version %s", fb->m_graphicsApiVersion.c_str());
+ INFO("Graphics API Extensions %s", fb->m_graphicsApiExtensions.c_str());
+ INFO("Graphics Device Extensions %s", fb->m_graphicsDeviceExtensions.c_str());
+
// Start up the single sync thread. If we are using Vulkan native
// swapchain, then don't initialize SyncThread worker threads with EGL
// contexts.