1. Provide the same API, especially, but not limited to, wxGLCanvas and wxCLContext ctors (which were completely different in all ports) 2. Extracted common parts into wxGLCanvas/ContextBase classes 3. Deprecate the old API using implicitly created wxGLContext git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45388 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			150 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			150 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/////////////////////////////////////////////////////////////////////////////
 | 
						|
// Name:        wx/msw/glcanvas.h
 | 
						|
// Purpose:     wxGLCanvas, for using OpenGL with wxWidgets under Windows
 | 
						|
// Author:      Julian Smart
 | 
						|
// Modified by:
 | 
						|
// Created:     04/01/98
 | 
						|
// RCS-ID:      $Id$
 | 
						|
// Copyright:   (c) Julian Smart
 | 
						|
// Licence:     wxWindows licence
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
#ifndef _WX_GLCANVAS_H_
 | 
						|
#define _WX_GLCANVAS_H_
 | 
						|
 | 
						|
#include "wx/palette.h"
 | 
						|
 | 
						|
#include "wx/msw/wrapwin.h"
 | 
						|
 | 
						|
#include <GL/gl.h>
 | 
						|
 | 
						|
// ----------------------------------------------------------------------------
 | 
						|
// wxGLContext: OpenGL rendering context
 | 
						|
// ----------------------------------------------------------------------------
 | 
						|
 | 
						|
class WXDLLIMPEXP_GL wxGLContext : public wxGLContextBase
 | 
						|
{
 | 
						|
public:
 | 
						|
    wxGLContext(wxGLCanvas *win, const wxGLContext* other = NULL);
 | 
						|
    virtual ~wxGLContext();
 | 
						|
 | 
						|
    virtual void SetCurrent(const wxGLCanvas& win) const;
 | 
						|
 | 
						|
    HGLRC GetGLRC() const { return m_glContext; }
 | 
						|
 | 
						|
protected:
 | 
						|
    HGLRC m_glContext;
 | 
						|
 | 
						|
private:
 | 
						|
    DECLARE_CLASS(wxGLContext)
 | 
						|
};
 | 
						|
 | 
						|
// ----------------------------------------------------------------------------
 | 
						|
// wxGLCanvas: OpenGL output window
 | 
						|
// ----------------------------------------------------------------------------
 | 
						|
 | 
						|
class WXDLLIMPEXP_GL wxGLCanvas : public wxGLCanvasBase
 | 
						|
{
 | 
						|
public:
 | 
						|
    wxGLCanvas(wxWindow *parent,
 | 
						|
               wxWindowID id = wxID_ANY,
 | 
						|
               const int *attribList = NULL,
 | 
						|
               const wxPoint& pos = wxDefaultPosition,
 | 
						|
               const wxSize& size = wxDefaultSize,
 | 
						|
               long style = 0,
 | 
						|
               const wxString& name = wxGLCanvasName,
 | 
						|
               const wxPalette& palette = wxNullPalette);
 | 
						|
 | 
						|
    bool Create(wxWindow *parent,
 | 
						|
                wxWindowID id = wxID_ANY,
 | 
						|
                const wxPoint& pos = wxDefaultPosition,
 | 
						|
                const wxSize& size = wxDefaultSize,
 | 
						|
                long style = 0,
 | 
						|
                const wxString& name = wxGLCanvasName,
 | 
						|
                const int *attribList = NULL,
 | 
						|
                const wxPalette& palette = wxNullPalette);
 | 
						|
 | 
						|
    virtual ~wxGLCanvas();
 | 
						|
 | 
						|
    // implement wxGLCanvasBase methods
 | 
						|
    virtual void SwapBuffers();
 | 
						|
 | 
						|
 | 
						|
    // MSW-specific helpers
 | 
						|
    // --------------------
 | 
						|
 | 
						|
    // get the HDC used for OpenGL rendering
 | 
						|
    HDC GetHDC() const { return m_hDC; }
 | 
						|
 | 
						|
    // try to find pixel format matching the given attributes list for the
 | 
						|
    // specified HDC, return 0 on error, otherwise pfd is filled in with the
 | 
						|
    // information from attribList if non-NULL
 | 
						|
    static int ChooseMatchingPixelFormat(HDC hdc, const int *attribList,
 | 
						|
                                         PIXELFORMATDESCRIPTOR *pfd = NULL);
 | 
						|
 | 
						|
#if wxUSE_PALETTE
 | 
						|
    // palette stuff
 | 
						|
    bool SetupPalette(const wxPalette& palette);
 | 
						|
    virtual wxPalette CreateDefaultPalette();
 | 
						|
    void OnQueryNewPalette(wxQueryNewPaletteEvent& event);
 | 
						|
    void OnPaletteChanged(wxPaletteChangedEvent& event);
 | 
						|
#endif // wxUSE_PALETTE
 | 
						|
 | 
						|
    // deprecated methods using the implicit wxGLContext, associate the context
 | 
						|
    // explicitly with the window instead
 | 
						|
#if WXWIN_COMPATIBILITY_2_8
 | 
						|
    wxDEPRECATED(
 | 
						|
    wxGLCanvas(wxWindow *parent,
 | 
						|
               wxWindowID id = wxID_ANY,
 | 
						|
               const wxPoint& pos = wxDefaultPosition,
 | 
						|
               const wxSize& size = wxDefaultSize,
 | 
						|
               long style = 0,
 | 
						|
               const wxString& name = wxGLCanvasName,
 | 
						|
               const int *attribList = NULL,
 | 
						|
               const wxPalette& palette = wxNullPalette)
 | 
						|
    );
 | 
						|
 | 
						|
    wxDEPRECATED(
 | 
						|
    wxGLCanvas(wxWindow *parent,
 | 
						|
               const wxGLContext *shared,
 | 
						|
               wxWindowID id = wxID_ANY,
 | 
						|
               const wxPoint& pos = wxDefaultPosition,
 | 
						|
               const wxSize& size = wxDefaultSize,
 | 
						|
               long style = 0,
 | 
						|
               const wxString& name = wxGLCanvasName,
 | 
						|
               const int *attribList = NULL,
 | 
						|
               const wxPalette& palette = wxNullPalette)
 | 
						|
    );
 | 
						|
 | 
						|
    wxDEPRECATED(
 | 
						|
    wxGLCanvas(wxWindow *parent,
 | 
						|
               const wxGLCanvas *shared,
 | 
						|
               wxWindowID id = wxID_ANY,
 | 
						|
               const wxPoint& pos = wxDefaultPosition,
 | 
						|
               const wxSize& size = wxDefaultSize,
 | 
						|
               long style = 0,
 | 
						|
               const wxString& name = wxGLCanvasName,
 | 
						|
               const int *attribList = NULL,
 | 
						|
               const wxPalette& palette = wxNullPalette)
 | 
						|
    );
 | 
						|
#endif // WXWIN_COMPATIBILITY_2_8
 | 
						|
 | 
						|
protected:
 | 
						|
    // common part of all ctors
 | 
						|
    void Init();
 | 
						|
 | 
						|
    // set up the pixel format using the given attributes and palette
 | 
						|
    bool DoSetup(const int *attribList);
 | 
						|
 | 
						|
 | 
						|
    // HDC for this window, we keep it all the time
 | 
						|
    HDC m_hDC;
 | 
						|
 | 
						|
private:
 | 
						|
    DECLARE_EVENT_TABLE()
 | 
						|
    DECLARE_CLASS(wxGLCanvas)
 | 
						|
};
 | 
						|
 | 
						|
#endif // _WX_GLCANVAS_H_
 | 
						|
 |