/* Copyright (c) 2001, Stanford University * All rights reserved * * See the file LICENSE.txt for information on redistributing this software. */ #include "packspu.h" #include "cr_string.h" #include "cr_error.h" #include "cr_spu.h" #include "cr_mem.h" #include static void __setDefaults( void ) { crMemZero(pack_spu.context, CR_MAX_CONTEXTS * sizeof(ContextInfo)); pack_spu.numContexts = 0; crMemZero(pack_spu.thread, MAX_THREADS * sizeof(ThreadInfo)); pack_spu.numThreads = 0; } static void set_emit( void *foo, const char *response ) { RT_NOREF(foo); sscanf( response, "%d", &(pack_spu.emit_GATHER_POST_SWAPBUFFERS) ); } static void set_swapbuffer_sync( void *foo, const char *response ) { RT_NOREF(foo); sscanf( response, "%d", &(pack_spu.swapbuffer_sync) ); } /* No SPU options yet. Well.. not really.. */ SPUOptions packSPUOptions[] = { { "emit_GATHER_POST_SWAPBUFFERS", CR_BOOL, 1, "0", NULL, NULL, "Emit a parameter after SwapBuffers", (SPUOptionCB)set_emit }, { "swapbuffer_sync", CR_BOOL, 1, "1", NULL, NULL, "Sync on SwapBuffers", (SPUOptionCB) set_swapbuffer_sync }, { NULL, CR_BOOL, 0, NULL, NULL, NULL, NULL, NULL }, }; void packspuSetVBoxConfiguration( const SPU *child_spu ) { RT_NOREF(child_spu); __setDefaults(); pack_spu.emit_GATHER_POST_SWAPBUFFERS = 0; pack_spu.swapbuffer_sync = 0; pack_spu.name = crStrdup("vboxhgcm://llp:7000"); pack_spu.buffer_size = 5 * 1024 * 1024; }