From 77a03d53ccaea089ef59c53a45d76da7bb8dc60a Mon Sep 17 00:00:00 2001 From: kearwood Date: Thu, 22 Sep 2022 23:04:03 -0700 Subject: [PATCH] Enabled KrCreateNode call in the hello_cube smoke test. --- tests/smoke/hello_cube/hello_cube.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/smoke/hello_cube/hello_cube.cpp b/tests/smoke/hello_cube/hello_cube.cpp index a2c6ce1..3a9fafd 100644 --- a/tests/smoke/hello_cube/hello_cube.cpp +++ b/tests/smoke/hello_cube/hello_cube.cpp @@ -60,7 +60,6 @@ void smoke_load() KrResult res = KrCreateScene(&create_scene_info); assert(res == KR_SUCCESS); - /* // Add a camera to the scene KrCreateNodeInfo create_camera_info = { KR_STRUCTURE_TYPE_CREATE_NODE }; res = KrInitNodeInfo(&create_camera_info.node, KR_STRUCTURE_TYPE_NODE_CAMERA); @@ -74,5 +73,4 @@ void smoke_load() // create_camera_info.node.camera.skybox_texture = kSkyboxTextureResourceHandle; res = KrCreateNode(&create_camera_info); assert(res == KR_SUCCESS); - */ }