File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -2176,6 +2176,7 @@ void CLIntercept::getContextPropertiesString(
2176
2176
case CL_CONTEXT_ADAPTER_D3D9EX_KHR:
2177
2177
case CL_CONTEXT_ADAPTER_DXVA_KHR:
2178
2178
#endif
2179
+ case CL_PRINTF_CALLBACK_ARM:
2179
2180
{
2180
2181
const void ** pp = (const void **)( properties + 1 );
2181
2182
const void * value = pp[0 ];
@@ -2191,6 +2192,14 @@ void CLIntercept::getContextPropertiesString(
2191
2192
str += enumName ().name_bool ( value );
2192
2193
}
2193
2194
break ;
2195
+ case CL_PRINTF_BUFFERSIZE_ARM:
2196
+ {
2197
+ const size_t * psz = (const size_t *)( properties + 1 );
2198
+ size_t value = psz[0 ];
2199
+ CLI_SPRINTF ( s, 256 , " %zu" , value );
2200
+ str += s;
2201
+ }
2202
+ break ;
2194
2203
case CL_CONTEXT_MEMORY_INITIALIZE_KHR:
2195
2204
// TODO: this is a cl_context_memory_initialize_khr bitfield.
2196
2205
// Fall through for now.
You can’t perform that action at this time.
0 commit comments