X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=retrace%2Fretrace.py;h=25fa62a51f4644c7141b9a664c359d9d81ddbed1;hb=edea899194c441353943c22577bc22bf0e64d187;hp=70926c0b39d755fe293286b88e6b86fbe3df7441;hpb=a936afc3ebb349c3aec8b5a595706f3c9749ad37;p=apitrace diff --git a/retrace/retrace.py b/retrace/retrace.py index 70926c0..25fa62a 100644 --- a/retrace/retrace.py +++ b/retrace/retrace.py @@ -40,12 +40,15 @@ class UnsupportedType(Exception): pass -def lookupHandle(handle, value): +def lookupHandle(handle, value, lval=False): if handle.key is None: return "_%s_map[%s]" % (handle.name, value) else: key_name, key_type = handle.key - return "_%s_map[%s][%s]" % (handle.name, key_name, value) + if handle.name == "location" and lval == False: + return "_location_map[%s].lookupUniformLocation(%s)" % (key_name, value) + else: + return "_%s_map[%s][%s]" % (handle.name, key_name, value) class ValueAllocator(stdapi.Visitor): @@ -286,7 +289,7 @@ class SwizzledValueRegistrator(stdapi.Visitor, stdapi.ExpanderMixin): OpaqueValueDeserializer().visit(handle.type, '_origResult', rvalue); if handle.range is None: rvalue = "_origResult" - entry = lookupHandle(handle, rvalue) + entry = lookupHandle(handle, rvalue, True) if (entry.startswith('_program_map') or entry.startswith('_shader_map')): print 'if (glretrace::supportsARBShaderObjects) {' print ' _handleARB_map[%s] = %s;' % (rvalue, lvalue) @@ -493,7 +496,8 @@ class Retracer: def checkResult(self, resultType): if str(resultType) == 'HRESULT': print r' if (FAILED(_result)) {' - print r' retrace::warning(call) << "failed\n";' + print ' static char szMessageBuffer[128];' + print r' retrace::warning(call) << "call returned 0x" << std::hex << _result << std::dec << ": " << (FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM, NULL, _result, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), szMessageBuffer, sizeof szMessageBuffer, NULL) ? szMessageBuffer : "???") << "\n";' print r' }' def filterFunction(self, function):