Skip to content

Instantly share code, notes, and snippets.

@rjpearsoniv
rjpearsoniv / gl_ffmpeg.cpp
Created October 3, 2025 02:09 — forked from rcolinray/gl_ffmpeg.cpp
OpenGL-FFMpeg integration
// Use OpenGL 3.0+, but don't use GLU
#define GLFW_INCLUDE_GL3
#define GLFW_NO_GLU
#include <GL/glfw.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
extern "C" {

Keybase proof

I hereby claim:

  • I am rjpearsoniv on github.
  • I am rjpearsoniv (https://keybase.io/rjpearsoniv) on keybase.
  • I have a public key ASBCoulNhC93DN3sJ4n9zkb-cEETBthauX-5cHsQryJepAo

To claim this, I am signing this object:

@rjpearsoniv
rjpearsoniv / keybase.md
Created May 20, 2017 15:10
My Keybase Proof

Keybase proof

I hereby claim:

  • I am rjpearsoniv on github.
  • I am rjpearsoniv (https://keybase.io/rjpearsoniv) on keybase.
  • I have a public key ASB1tuwxEcekhM_1tmBDx0cxtS9983zPTCuZ8w3tKKnGIAo

To claim this, I am signing this object:

/*
* Random-Number Utilities (randutil)
* Addresses common issues with C++11 random number generation.
* Makes good seeding easier, and makes using RNGs easy while retaining
* all the power.
*
* The MIT License (MIT)
*
* Copyright (c) 2015 Melissa E. O'Neill
*