ollydbg
ollydbg
Another thing we can do is: manually compare the added or removed lines. There is a similar project named [gitahead](https://github.com/gitahead/gitahead), which is QT based and implemented in C++. https://github.com/gitahead/gitahead/blob/bb747caef098140d9674990b1d79d096d1eac8df/src/ui/DiffView.cpp#L1323-L1371 It...
It is located in hard-coded in the file: ` CuteMarkEd/app-static/template/htmltemplate.cpp `
I see the same issue here on my PC. EDIT: I'm using GitExtensions-Portable-4.1.0.14842-782e0cf46 under Windows 7 64bit system.
Hi, thanks for the reply, and it looks like C++ namespace is a good way to solve this issue. I have attach the source files, and you can see I...
Good work, If it could parse the `Text` field, we can extract the those information, and draw the text in some native API. For example, all the non `Text` elements...
@jamislike can you merge the work in year 2017 with the current head maser? It looks like some code and structure are changed from the years. Thanks.
[2022-04-05.zip](https://github.com/memononen/nanosvg/files/8416442/2022-04-05.zip) I have manually merged your work with the recent master, but I'm not sure this is OK, can you have a look at this patch file(in the attachment zip...
In the patch file, I have add a comment: ~~~~ @@ -1019,12 +1095,18 @@ static void nsvg__addShape(NSVGparser* p) // Set flags shape->flags = (attr->visible ? NSVG_FLAGS_VISIBLE : 0x00); +// should...
I got a `shape` like below: (I show this from the GDB debugger command line) ~~~~ $2 = {id = "text35", '\000' , fill = {type = 1 '\001', {color...
I debugged this code for a while, and I see that in this function: ~~~~ static void nsvg__parseText(NSVGparser* p, const char** attr) { float x = 0.0f; float y =...