Skip to content

Instantly share code, notes, and snippets.

View lrbender01's full-sized avatar

Luke Bender lrbender01

  • Pasadena, California
  • 20:28 (UTC -07:00)
View GitHub Profile
@notnotrobby
notnotrobby / cgp.md
Last active March 18, 2026 15:24
List of free resources to study computer graphics programming.
@cjay
cjay / vulkan.css
Created July 1, 2021 04:24
Vulkan Spec Dark Mode
/*
For use with the Stylus browser extension, since Dark Reader is slow on the giant single page spec.
*/
html,
body,
input,
textarea,
select,
button {
@mrtrizer
mrtrizer / CMakeLists.txt
Created October 26, 2020 08:56
CMake Vulkan build shaders. Tested in Visual Studio, but should also work under Linux and MacOS
cmake_minimum_required (VERSION 3.8)
set(PROJECT_NAME SimpleVulkan)
add_executable (${PROJECT_NAME} "main.c")
find_package(Vulkan REQUIRED)
target_include_directories(${PROJECT_NAME} PRIVATE "./")
@kosua20
kosua20 / gist:0c506b81b3812ac900048059d2383126
Created March 18, 2017 18:35
NVIDIA FXAA 3.11 by TIMOTHY LOTTES
/*============================================================================
NVIDIA FXAA 3.11 by TIMOTHY LOTTES
------------------------------------------------------------------------------
COPYRIGHT (C) 2010, 2011 NVIDIA CORPORATION. ALL RIGHTS RESERVED.
------------------------------------------------------------------------------
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THIS SOFTWARE IS PROVIDED
#pragma once
#include "IconsFontAwesome.h" // from https://github.com/juliettef/IconFontCppHeaders
namespace ImGui
{
inline void SetupImGuiStyle( bool bStyleDark_, float alpha_ )
{