Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
98 changes: 98 additions & 0 deletions include/getenv_util.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
/*
// Copyright (c) 2022-2024 Ben Ashbaugh
//
// SPDX-License-Identifier: MIT
*/
#pragma once

#include <stdlib.h>
#include <string.h>

#include <string>

#if defined(_WIN32)

#include <windows.h>

#define GETENV( _name, _value ) _dupenv_s( &_value, NULL, _name )
#define FREEENV( _value ) free( _value )

#else

#define GETENV( _name, _value ) _value = getenv(_name)
#define FREEENV( _value ) (void)_value

#endif

static inline bool getControlFromEnvironment(
const char* name,
void* pValue,
size_t size )
{
char* envVal = NULL;
GETENV( name, envVal );

if( envVal != NULL )
{
if( size == sizeof(unsigned int) )
{
unsigned int* puVal = (unsigned int*)pValue;
*puVal = atoi(envVal);
}
else if( strlen(envVal) < size )
{
char* pStr = (char*)pValue;
strcpy( pStr, envVal );
}

FREEENV( envVal );
return true;
}

return false;
}

template <class T>
static bool getControl(
const char* name,
T& value )
{
unsigned int readValue = 0;
bool success = getControlFromEnvironment( name, &readValue, sizeof(readValue) );
if( success )
{
value = readValue;
}

return success;
}

template <>
bool getControl<bool>(
const char* name,
bool& value )
{
unsigned int readValue = 0;
bool success = getControlFromEnvironment( name, &readValue, sizeof(readValue) );
if( success )
{
value = ( readValue != 0 );
}

return success;
}

template <>
bool getControl<std::string>(
const char* name,
std::string& value )
{
char readValue[256] = "";
bool success = getControlFromEnvironment( name, readValue, sizeof(readValue) );
if( success )
{
value = readValue;
}

return success;
}
10 changes: 9 additions & 1 deletion layers/10_cmdbufemu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,17 @@ clGetExtensionFunctionAddressForPlatform
clInitLayer
```

## Optional Controls

The following environment variables can modify the behavior of the command buffer emulation layer:

| Environment Variable | Behavior | Example Format |
|----------------------|----------|-----------------|
| `CMDBUFEMU_EnhancedErrorChecking` | Enables additional error checking when commands are added to a command buffer using a command buffer "test queue". By default, the additional error checking is disabled. | `export CMDBUFEMU_EnhancedErrorChecking=1`<br/><br/>`set CMDBUFEMU_EnhancedErrorChecking=1` |

## Known Limitations

This section describes some of the limitations of the emulated `cl_khr_command_buffer` functionality:

* Many error conditions are not properly checked for and returned.
* Some error conditions are not properly checked for and returned.
* Many functions are not thread safe.
Loading