Skip to content

Instantly share code, notes, and snippets.

void gradient_rect( ImDrawList* list, const ImVec2& p_min, const ImVec2& p_max,
ImU32 col_top, ImU32 col_bottom, float rounding,
ImDrawFlags flags )
{
/*
* "It’s also that AddRectFilledMultiColor() doesn’t even support rounding.
* In the event your shape could fill the window without requiring clipping
* (which is always rectangular) you could use AddRectFilled() with rounding
* and white color + the ShadeVertsLinearColorGradientKeepAlpha() function."
* - ocornut
@therathatter
therathatter / Suspend Linux program at start with LD_PRELOAD
Created May 31, 2024 23:51
g++ suspend.cpp -fPIC -m32 -shared -dl -o suspend.so
#include <stdio.h>
#include <dlfcn.h>
#define VISIBLE __attribute__((visibility("default")))
using void_fn = void(*)(void);
using main_fn = int(*)(int, char**, char**);
extern "C" VISIBLE int __libc_start_main(main_fn main, int argc, char** argv, main_fn init, void_fn fini, void_fn rtld_fini, void* stack_end) {
static auto o_libc_start_main = reinterpret_cast<decltype(&__libc_start_main)>(dlsym(RTLD_NEXT, "__libc_start_main"));
@therathatter
therathatter / fps-limit.c
Last active August 18, 2024 22:23
Pump It Up 60 FPS locker (or really, anything that uses glXSwapBuffers)
#include <dlfcn.h>
#include <GL/glx.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <stdbool.h>
#include <stdint.h>
#include <unistd.h>
#include <sched.h>