lwjgl/src/native/macosx/RenderingContext.h

27 lines
425 B
C
Raw Normal View History

2002-09-08 02:20:19 -04:00
/*
* RenderingContext.h
* lwjglOSX
2002-09-08 02:20:19 -04:00
*
* Created by Gregory Pierce on Sat Dec 28 2002.
2002-09-08 02:20:19 -04:00
* Copyright (c) 2002 __MyCompanyName__. All rights reserved.
*
*/
#pragma once
#include <Carbon/Carbon.h>
#include <AGL/agl.h>
#include <OpenGL/gl.h>
2002-09-08 02:20:19 -04:00
class RenderingContext
{
public:
AGLContext aglContext;
WindowPtr windowPtr;
Rect rect;
2002-09-08 02:20:19 -04:00
RenderingContext();
~RenderingContext();
};