l3lackShark / gosumemory

Cross-Platform memory reader for osu!
GNU General Public License v3.0
684 stars 63 forks source link

[Help] Where can I download in-game overlay source code? #107

Open uuund3rfl0w opened 2 years ago

uuund3rfl0w commented 2 years ago

https://github.com/l3lackShark/gosumemory/blob/85062c44a488e60007d86ee7b48baa5bf380b806/injctr/injctr.go#L18-L51

I see you write the in-game overlay but it is not open-sourced, where can I download its source code?

uuund3rfl0w commented 2 years ago

I'm just feel curious about the implementation and would like to read the source code, thanks. 🤣

l3lackShark commented 2 years ago

Sorry, gameoverlay is closed source to prevent people from creating cheats on it's code base.

uuund3rfl0w commented 2 years ago

I know how it works, I just curious how you utilize overlay with CEF.

uuund3rfl0w commented 2 years ago

Can you show some docs or demo project? Are you using windowless rendering?

l3lackShark commented 2 years ago

Current implementation is not that great. It uses legacy opengl calls to draw the texture, and memset() is used to update the pixel buffer of that texture each cef frame.

uuund3rfl0w commented 2 years ago

Current implementation is not that great. It uses legacy opengl calls to draw the texture, and memset() is used to update the pixel buffer of that texture each cef frame.

Thanks for your reply :)