axmol/cocos2dx/platform/linux/CCEGLView.h

69 lines
1.6 KiB
C
Raw Normal View History

2012-08-02 13:02:59 +08:00
/*
* EGLView.h
2012-08-02 13:02:59 +08:00
*
* Created on: Aug 8, 2011
* Author: laschweinski
*/
#ifndef EGLVIEW_H_
#define EGLVIEW_H_
2012-08-02 13:02:59 +08:00
#include "platform/CCCommon.h"
2012-08-02 13:02:59 +08:00
#include "cocoa/CCGeometry.h"
#include "platform/CCEGLViewProtocol.h"
bool initExtensions();
NS_CC_BEGIN
class EGLView : public EGLViewProtocol{
2012-08-02 13:02:59 +08:00
public:
EGLView();
virtual ~EGLView();
2012-08-02 13:02:59 +08:00
friend void keyEventHandle(int,int);
friend void mouseButtonEventHandle(int,int);
friend void mousePosEventHandle(int,int);
friend void charEventHandle(int,int);
/**
* iPixelWidth, height: the window's size
* iWidth ,height: the point size, which may scale.
* iDepth is not the buffer depth of opengl, it indicate how may bits for a pixel
*/
virtual void setFrameSize(float width, float height);
virtual void setViewPortInPoints(float x , float y , float w , float h);
virtual void setScissorInPoints(float x , float y , float w , float h);
/*
* Set zoom factor for frame. This method is for debugging big resolution (e.g.new ipad) app on desktop.
*/
void setFrameZoomFactor(float fZoomFactor);
float getFrameZoomFactor();
virtual bool isOpenGLReady();
virtual void end();
virtual void swapBuffers();
virtual void setIMEKeyboardState(bool bOpen);
2012-08-02 13:02:59 +08:00
/**
@brief get the shared main open gl window
*/
static EGLView* getInstance();
/** @deprecated Use getInstance() instead */
CC_DEPRECATED_ATTRIBUTE static EGLView* sharedOpenGLView();
2012-08-02 13:02:59 +08:00
private:
bool initGL();
void destroyGL();
2012-08-02 13:02:59 +08:00
private:
//store current mouse point for moving, valid if and only if the mouse pressed
Point _mousePoint;
2012-08-02 13:02:59 +08:00
bool bIsInit;
float _frameZoomFactor;
2012-08-02 13:02:59 +08:00
};
NS_CC_END
#endif /* EGLVIEW_H_ */