Correct. When you create a mip map level of your texture you will blend the border with one of the…
Jason —
Ah, awesome, that fixed that issue. Thanks for the info and suggestions. I will use them to try a…
I tried it and it works on my machine (Windows 7). It crashed when I try to close it (there was a …
Could we have a link to where you read that ? I doesn't sound right to me. The point of the shader…
Draos —
Is the reason we have the border at all to do with subpixel rendering? My intuition is that we hav…
John —
Updated the link in the first post with a new version. I've added some basic mouse functionality t…
i'm starting to understand it a bit more, but i read somewhere that an algorithm like this is the …
Alexey —
Function, type, and macro definitions are all listed in the code index, which is asynchronously bu…
will take a look in a little bit. thanks for showing me this.
Casey had a chat episode where he explained how this works. The math is a bit different, but conce…
Hi Guys, I found a shader on Shadertoy that allows for nice looking pixel-art aesthetics even with…
I have noticed a bug that makes some file extensions not being treated as code. For example, .java…
I'll look into it. Thanks guys.
Have you tried dlopen/dlsym on libc? I suspect you have to initialize libc with libc_start_main, b…
Jason —
I just implemented a simple way to read a type name found under my cursor and display it's definit…
To do that you generally use the working directory plus relative paths. For example if you can lau…
Jason —
Okay, so after some testing I think that maybe the reason my struct definitions weren't being foun…
C_Worm —
Hey! Im wondering if there is a way for my executable in my \build directory to find assets like t…
0xc3 0xa3 in utf-8 is 0xe3. Seems that Remedy is passing unicode encoded in utf-8 which is not rea…
I sort of got in the same boat, I followed along with a bunch of HMH a while ago and then got busy…
bzzr —
While using Remedy I noticed that the strings given as arguments in the "Command Arguments" field …
So I have put my code for new views into the view_input_handle hook. There already was some view …
Looks like there's no hook for new view being active, there's 'HookID_ViewEventHandler' but I don'…
You can read the blog post here:
Jason —
This might be a potential bug. Anyone else have any issues with the command 'list_all_locations_of…
Hi Oscar! I did indeed have a Patreon setup a while back but bailed when they changed the fee stru…
Jason —
Ah, I see. Thanks so much for the help!
Awesome, thanks for the links! Looks like these will be super useful.
You can still call functions to libc and provide your own _start. That will work fine. Documentati…
TLDR How do I write my own _start procedure while still dynamically linking with the systems libc?…