Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-09-11 | Drop m_supportsSeeking. | José Fonseca | 1 | -10/+2 | |
Was only used in an assert, which typically already exists inside the File implementation. | |||||
2011-09-11 | Encapsulate on parser state in structure. | José Fonseca | 1 | -16/+14 | |
So that parser users don't need to know what needs and needs not to be saved/restored. | |||||
2011-09-11 | Interleave parse_xxx and scan_xxx methods. | José Fonseca | 1 | -39/+18 | |
Makes much easier to read/maintain. | |||||
2011-09-11 | Parse the signatures only once. | José Fonseca | 1 | -21/+25 | |
Also use simple offset comparison instead of search in a set to determine weather a signature is to be expected or not. | |||||
2011-09-06 | Switch the gui to the on-demand-loader. | Zack Rusin | 1 | -0/+2 | |
Doesn't yet do actual on demand loading, but a lot of the code is in place. | |||||
2011-09-04 | Add code to report parsing/scanning progress. | Zack Rusin | 1 | -0/+5 | |
2011-09-02 | Implement scanning/skipping of fragments of the trace | Zack Rusin | 1 | -0/+41 | |
for the initial scan. unfortunately it's not the improvement we were looking for. (from 11.9 to about 9.2 secs on a 240mb trace). | |||||
2011-09-01 | Fix memory usage in the on-demand-loading. | Zack Rusin | 1 | -3/+11 | |
just store offsets to the first call in a frame in the loader | |||||
2011-09-01 | First working implementation of on-demand-loading of frames/calls. | Zack Rusin | 1 | -0/+17 | |
2011-08-27 | Some initial thoughts on the on-demand loading api. | Zack Rusin | 1 | -2/+16 | |
2011-08-06 | Abstract file writing operation into a class of its own. | Zack Rusin | 1 | -1/+2 | |
Allows us to implement different compression, decompression algos. | |||||
2011-05-28 | Unify Call::Signature into FunctionSig. | José Fonseca | 1 | -1/+1 | |
2011-05-28 | Unify Struct::Signature into StructSig | José Fonseca | 1 | -1/+1 | |
2011-05-28 | Unify Enum::Signature into EnumSig. | José Fonseca | 1 | -1/+1 | |
2011-05-28 | Unify Bitmask::Signature with BitmaskSig. | José Fonseca | 1 | -1/+1 | |
2011-05-28 | Use regular C strings everywhere. | José Fonseca | 1 | -2/+1 | |
2011-05-07 | Be robust against premature EOF in more places. | José Fonseca | 1 | -1/+1 | |
2011-04-17 | Remove unneeded include. | José Fonseca | 1 | -1/+0 | |
2011-04-15 | Make Trace::Parser::version a non static member. | José Fonseca | 1 | -1/+1 | |
2011-04-10 | Move trace parse methods to .cpp. | José Fonseca | 1 | -334/+49 | |
2011-03-25 | Move Trace::Parser::version to .cpp to avoid duplicate symbols. | José Fonseca | 1 | -3/+0 | |
2011-03-23 | Silence some warnings. | José Fonseca | 1 | -2/+2 | |
2011-03-22 | More complete glDrawArrays and glDrawElements support. | José Fonseca | 1 | -3/+6 | |
2011-02-09 | Don't leak all over the place. | José Fonseca | 1 | -4/+4 | |
2010-12-04 | Treat pointers specially. | José Fonseca | 1 | -2/+1 | |
2010-11-29 | Standardize on 4 spaces. | José Fonseca | 1 | -332/+332 | |
2010-11-28 | Use vectors instead of maps. | José Fonseca | 1 | -25/+26 | |
2010-11-28 | Keep active calls in a list. | José Fonseca | 1 | -4/+14 | |
2010-11-26 | Remove dead code. | José Fonseca | 1 | -20/+0 | |
2010-11-26 | More compact struct representation. | José Fonseca | 1 | -7/+26 | |
2010-11-26 | More efficient enum representation. | José Fonseca | 1 | -6/+19 | |
2010-11-26 | More efficient call representation. | José Fonseca | 1 | -4/+23 | |
2010-11-26 | More efficient bitmask representation. | José Fonseca | 1 | -24/+23 | |
2010-11-25 | Fix multithreaded reentrancy. | José Fonseca | 1 | -3/+47 | |
Happens on windows when SetPixelFormat is called... | |||||
2010-11-25 | Trace parse debugging. | José Fonseca | 1 | -8/+16 | |
2010-11-25 | More parameters. Cleanups. | José Fonseca | 1 | -3/+3 | |
2010-11-25 | Compress names better. | José Fonseca | 1 | -8/+25 | |
2010-11-24 | Refer args by index. | José Fonseca | 1 | -3/+7 | |
Argument names are not very reliable. | |||||
2010-11-24 | Cleanup pointers. | José Fonseca | 1 | -12/+0 | |
2010-11-22 | Invert control flow to satisfy glut. | José Fonseca | 1 | -22/+23 | |
2010-11-22 | Verbose trace parsing for debugging purposes. | José Fonseca | 1 | -9/+37 | |
2010-11-21 | Make opaque pointers more consistent. | José Fonseca | 1 | -2/+11 | |
2010-11-21 | Handle null more consistently. | José Fonseca | 1 | -5/+7 | |
2010-11-20 | Support glTexImage through blobs. | José Fonseca | 1 | -2/+13 | |
2010-11-19 | Start migrating to the visitor pattern. | José Fonseca | 1 | -4/+4 | |
2010-11-19 | First stab at binary trace and retracing. | José Fonseca | 1 | -0/+253 | |
It's enough to retrace trivial/tri Mesa demo. |