Skip to content

Commit

Permalink
Change resolution in StandardKnobsDefaultValue back to int
Browse files Browse the repository at this point in the history
  • Loading branch information
angela28chen committed Dec 1, 2023
1 parent 3d1eb8c commit e657b1f
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions include/ppx/application.h
Original file line number Diff line number Diff line change
Expand Up @@ -336,18 +336,18 @@ struct ApplicationSettings
#if !defined(PPX_LINUX_HEADLESS)
bool headless = false;
#endif
bool listGpus = false;
std::string metricsFilename = std::filesystem::current_path().u8string();
bool overwriteMetricsFile = false;
std::pair<uint32_t, uint32_t> resolution = std::make_pair(0, 0);
uint32_t runTimeMs = 0;
int screenshotFrameNumber = -1;
std::string screenshotPath = "";
int statsFrameWindow = -1;
bool useSoftwareRenderer = false;
bool listGpus = false;
std::string metricsFilename = std::filesystem::current_path().u8string();
bool overwriteMetricsFile = false;
std::pair<int, int> resolution = std::make_pair(0, 0);
uint32_t runTimeMs = 0;
int screenshotFrameNumber = -1;
std::string screenshotPath = "";
int statsFrameWindow = -1;
bool useSoftwareRenderer = false;
#if defined(PPX_BUILD_XR)
std::pair<uint32_t, uint32_t> xrUiResolution = std::make_pair(0, 0);
std::vector<std::string> xrRequiredExtensions = {};
std::pair<int, int> xrUiResolution = std::make_pair(0, 0);
std::vector<std::string> xrRequiredExtensions = {};
#endif
} standardKnobsDefaultValue;
};
Expand Down

0 comments on commit e657b1f

Please sign in to comment.