From 67e5e6e36a2cf58731f0dd7602445ab9ad4f163c Mon Sep 17 00:00:00 2001 From: Greg Wells Date: Sun, 29 Jun 2025 12:03:15 -0400 Subject: [PATCH] update some naming for validation layers --- .../function_loader/loader/loader_utils.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/validation_layers/function_loader/loader/loader_utils.h b/projects/validation_layers/function_loader/loader/loader_utils.h index d582a96..2a62b31 100644 --- a/projects/validation_layers/function_loader/loader/loader_utils.h +++ b/projects/validation_layers/function_loader/loader/loader_utils.h @@ -2,7 +2,7 @@ loaderLayer* nextLayer = loaderGetNextLayer(instance); \ if (nextLayer->deviceFunctions.function == NULL) { \ gnDebuggerSetErrorMessage(instance->debugger, (gnMessageData){ \ - .message = gnCreateString("Failed to load destroy " #function " function") \ + .message = gnCreateString("Failed to load " #function " this indicates a bug within gryphn") \ }); \ resetLayer(instance); \ return GN_FAILED_TO_LOAD_FUNCTION; \ @@ -13,7 +13,7 @@ return nextLayer->deviceFunctions.function(__VA_ARGS__); loaderLayer* nextLayer = loaderGetNextLayer(instance); \ if (nextLayer->commandFunctions.function == NULL) { \ gnDebuggerSetErrorMessage(instance->debugger, (gnMessageData){ \ - .message = gnCreateString("Failed to load destroy " #function " function") \ + .message = gnCreateString("Failed to load " #function " this indicates a bug within gryphn") \ }); \ resetLayer(instance); \ return GN_FAILED_TO_LOAD_FUNCTION; \ @@ -24,7 +24,7 @@ return nextLayer->commandFunctions.function(__VA_ARGS__); loaderLayer* nextLayer = loaderGetNextLayer(instance); \ if (nextLayer->deviceFunctions.function == NULL) { \ gnDebuggerSetErrorMessage(instance->debugger, (gnMessageData){ \ - .message = gnCreateString("Failed to load destroy " #function " function") \ + .message = gnCreateString("Failed to load " #function " this indicates a bug within gryphn") \ }); \ resetLayer(instance); \ return; \ @@ -35,7 +35,7 @@ nextLayer->deviceFunctions.function(__VA_ARGS__); loaderLayer* nextLayer = loaderGetNextLayer(instance); \ if (nextLayer->commandFunctions.function == NULL) { \ gnDebuggerSetErrorMessage(instance->debugger, (gnMessageData){ \ - .message = gnCreateString("Failed to load destroy " #function " function") \ + .message = gnCreateString("Failed to load " #function " this indicates a bug within gryphn") \ }); \ resetLayer(instance); \ return; \