Skip to content

Commit

Permalink
Bug Fix - incorrect default val for workload validation (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
nv-jdeligiannis authored Oct 18, 2024
1 parent baf2bc9 commit 84de27e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions omm-sdk/include/omm.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ license agreement from NVIDIA CORPORATION is strictly prohibited.

#define OMM_VERSION_MAJOR 1
#define OMM_VERSION_MINOR 5
#define OMM_VERSION_BUILD 0
#define OMM_VERSION_BUILD 1

#define OMM_MAX_TRANSIENT_POOL_BUFFERS 8

Expand Down Expand Up @@ -469,7 +469,7 @@ inline ommCpuBakeInputDesc ommCpuBakeInputDescDefault()
v.degenTriState = ommSpecialIndex_FullyUnknownOpaque;
v.maxSubdivisionLevel = 8;
v.subdivisionLevels = NULL;
v.maxWorkloadSize = 0;
v.maxWorkloadSize = 0xFFFFFFFFFFFFFFFF;
return v;
}

Expand Down
2 changes: 1 addition & 1 deletion omm-sdk/src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ license agreement from NVIDIA CORPORATION is strictly prohibited.

#define VERSION_MAJOR 1
#define VERSION_MINOR 5
#define VERSION_BUILD 0
#define VERSION_BUILD 1
#define VERSION_REVISION 0

#define VERSION_STRING STR(VERSION_MAJOR.VERSION_MINOR.VERSION_BUILD.VERSION_REVISION)

0 comments on commit 84de27e

Please sign in to comment.