Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
/ ofxHapPlayer Public archive
forked from bangnoise/ofxHapPlayer

A Hap player for OpenFrameworks

License

Notifications You must be signed in to change notification settings

mattelim/ofxHapPlayer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ofxHapPlayer (OpenGL Version 3.2)

Fork of bangnoise ofxHapPlayer: https://github.com/bangnoise/ofxHapPlayer

Changed to OpenGL Version 3.2 / #version 150 to be compatible with other add-ons.

Example uses a combination of this ofxHapPlayer and ofxPSBlend by Akira-Hayasaka: https://github.com/Akira-Hayasaka/ofxPSBlend

sample image

Usage

Use the OF Project Generator to generate build files for your project, selecting ofxHapPlayer as an addon.

#import "ofxHapPlayer.h"

Project main.cpp file needs to be changed from:

ofSetupOpenGL(1280,720,OF_WINDOW);

to:

ofGLWindowSettings settings;
settings.setGLVersion(3,2);
settings.windowMode = OF_WINDOW;
settings.setSize(1280,720);
ofCreateWindow(settings);

Example included requires ofxPSBlend

Credits and License

ofxHapPlayer was written by Tom Butterworth, initially in April 2013, supported by Igloo Vision and James Sheridan. Since then it has been supported by Vidvox. It is released under a FreeBSD License.

About

A Hap player for OpenFrameworks

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 84.4%
  • C++ 14.4%
  • Other 1.2%