Skip to content

Commit b905889

Browse files
committed
Update CaptureTest app with stress testing and device refresh
Enhances test application with automated stress testing that randomly switches between devices and modes. Includes device refresh capability to detect hot-plugged devices without restarting the app. Adds vc2019 project files and CMake configuration. Updates to use ImGui for runtime control and monitoring of stress test parameters.
1 parent e561d9a commit b905889

File tree

8 files changed

+765
-85
lines changed

8 files changed

+765
-85
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#pragma once
2+
#include "cinder/CinderResources.h"
3+
4+
//#define RES_MY_RES CINDER_RESOURCE( ../resources/, image_name.png, 128, IMAGE )
5+
6+
7+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
cmake_minimum_required( VERSION 3.10 FATAL_ERROR )
2+
set( CMAKE_VERBOSE_MAKEFILE ON )
3+
4+
project( CaptureTest )
5+
6+
get_filename_component( CINDER_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../../.." ABSOLUTE )
7+
get_filename_component( APP_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../" ABSOLUTE )
8+
9+
include( "${CINDER_PATH}/proj/cmake/modules/cinderMakeApp.cmake" )
10+
11+
ci_make_app(
12+
SOURCES ${APP_PATH}/src/CaptureTestApp.cpp
13+
CINDER_PATH ${CINDER_PATH}
14+
)

0 commit comments

Comments
 (0)