mirror of
https://github.com/mauiaaron/apple2.git
synced 2025-01-11 14:30:08 +00:00
Stub a touch-based joystick in OpenGL
This commit is contained in:
parent
43b280d3ba
commit
602c2530e6
29
src/video/gltouchjoy.c
Normal file
29
src/video/gltouchjoy.c
Normal file
@ -0,0 +1,29 @@
|
||||
/*
|
||||
* Apple // emulator for *nix
|
||||
*
|
||||
* This software package is subject to the GNU General Public License
|
||||
* version 2 or later (your choice) as published by the Free Software
|
||||
* Foundation.
|
||||
*
|
||||
* THERE ARE NO WARRANTIES WHATSOEVER.
|
||||
*
|
||||
*/
|
||||
|
||||
// GL touch joystick -- Created by Aaron Culliney
|
||||
|
||||
#include "common.h"
|
||||
|
||||
#include "video_util/modelUtil.h"
|
||||
#include "video_util/matrixUtil.h"
|
||||
#include "video_util/sourceUtil.h"
|
||||
|
||||
#ifdef __APPLE__
|
||||
#import <CoreFoundation/CoreFoundation.h>
|
||||
#endif
|
||||
|
||||
// VAO optimization (may not be available on all platforms)
|
||||
#define USE_VAO 0
|
||||
|
||||
void gldriver_joystick_reset(void) {
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user