2008-11-23 15:04:27 +00:00
|
|
|
/*
|
2008-10-22 23:40:52 +00:00
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 2008 Julien Isorce <julien.isorce@gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef UNICODE
|
|
|
|
#include <windows.h>
|
|
|
|
#define UNICODE
|
|
|
|
|
|
|
|
#include "gstglwindow.h"
|
|
|
|
|
|
|
|
|
2008-11-22 15:43:24 +00:00
|
|
|
#define WM_GST_GL_WINDOW_CUSTOM (WM_APP+1)
|
|
|
|
#define WM_GST_GL_WINDOW_QUIT (WM_APP+2)
|
2008-10-22 23:40:52 +00:00
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
void gst_gl_window_set_pixel_format (GstGLWindow * window);
|
|
|
|
LRESULT CALLBACK window_proc (HWND hWnd, UINT uMsg, WPARAM wParam,
|
|
|
|
LPARAM lParam);
|
|
|
|
LRESULT FAR PASCAL sub_class_proc (HWND hWnd, UINT uMsg, WPARAM wParam,
|
|
|
|
LPARAM lParam);
|
2008-10-22 23:40:52 +00:00
|
|
|
|
|
|
|
#define GST_GL_WINDOW_GET_PRIVATE(o) \
|
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE((o), GST_GL_TYPE_WINDOW, GstGLWindowPrivate))
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstGLWindowPrivate
|
|
|
|
{
|
|
|
|
HWND internal_win_id;
|
|
|
|
HDC device;
|
|
|
|
HGLRC gl_context;
|
2009-04-18 11:57:44 +00:00
|
|
|
HGLRC external_gl_context;
|
2008-10-22 23:40:52 +00:00
|
|
|
GstGLWindowCB draw_cb;
|
|
|
|
gpointer draw_data;
|
|
|
|
GstGLWindowCB2 resize_cb;
|
|
|
|
gpointer resize_data;
|
|
|
|
GstGLWindowCB close_cb;
|
|
|
|
gpointer close_data;
|
2008-10-25 14:18:23 +00:00
|
|
|
gboolean is_closed;
|
2008-11-22 15:43:24 +00:00
|
|
|
gboolean visible;
|
2008-10-22 23:40:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (GstGLWindow, gst_gl_window, G_TYPE_OBJECT);
|
|
|
|
|
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "GstGLWindow"
|
|
|
|
|
|
|
|
gboolean _gst_gl_window_debug = FALSE;
|
|
|
|
|
2010-01-05 23:13:46 +00:00
|
|
|
void gst_gl_window_init_platform ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-10-27 23:22:27 +00:00
|
|
|
HHOOK hHook;
|
|
|
|
|
2008-10-22 23:40:52 +00:00
|
|
|
/* Must be called in the gl thread */
|
|
|
|
static void
|
|
|
|
gst_gl_window_finalize (GObject * object)
|
|
|
|
{
|
|
|
|
G_OBJECT_CLASS (gst_gl_window_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_window_log_handler (const gchar * domain, GLogLevelFlags flags,
|
|
|
|
const gchar * message, gpointer user_data)
|
2008-10-22 23:40:52 +00:00
|
|
|
{
|
|
|
|
if (_gst_gl_window_debug) {
|
|
|
|
g_log_default_handler (domain, flags, message, user_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_gl_window_class_init (GstGLWindowClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *obj_class = G_OBJECT_CLASS (klass);
|
2008-12-12 23:50:16 +00:00
|
|
|
WNDCLASS wc;
|
|
|
|
ATOM atom = 0;
|
|
|
|
HINSTANCE hinstance = GetModuleHandle (NULL);
|
2008-10-22 23:40:52 +00:00
|
|
|
|
|
|
|
g_type_class_add_private (klass, sizeof (GstGLWindowPrivate));
|
|
|
|
|
|
|
|
obj_class->finalize = gst_gl_window_finalize;
|
2008-12-12 23:50:16 +00:00
|
|
|
|
|
|
|
atom = GetClassInfo (hinstance, "GSTGL", &wc);
|
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
if (atom == 0) {
|
|
|
|
ZeroMemory (&wc, sizeof (WNDCLASS));
|
2008-12-12 23:50:16 +00:00
|
|
|
|
|
|
|
wc.lpfnWndProc = window_proc;
|
|
|
|
wc.cbClsExtra = 0;
|
|
|
|
wc.cbWndExtra = 0;
|
|
|
|
wc.hInstance = hinstance;
|
|
|
|
wc.hIcon = LoadIcon (NULL, IDI_WINLOGO);
|
|
|
|
wc.style = CS_OWNDC | CS_HREDRAW | CS_VREDRAW;
|
|
|
|
wc.hCursor = LoadCursor (NULL, IDC_ARROW);
|
|
|
|
wc.hbrBackground = (HBRUSH) GetStockObject (BLACK_BRUSH);
|
|
|
|
wc.lpszMenuName = NULL;
|
|
|
|
wc.lpszClassName = "GSTGL";
|
|
|
|
|
|
|
|
atom = RegisterClass (&wc);
|
|
|
|
|
|
|
|
if (atom == 0)
|
2009-04-20 21:48:15 +00:00
|
|
|
g_error ("Failed to register window class %lud\n", GetLastError ());
|
2008-12-12 23:50:16 +00:00
|
|
|
}
|
2008-10-22 23:40:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_window_init (GstGLWindow * window)
|
2008-10-22 23:40:52 +00:00
|
|
|
{
|
|
|
|
window->priv = GST_GL_WINDOW_GET_PRIVATE (window);
|
|
|
|
|
|
|
|
if (g_getenv ("GST_GL_WINDOW_DEBUG") != NULL)
|
|
|
|
_gst_gl_window_debug = TRUE;
|
|
|
|
|
|
|
|
g_log_set_handler ("GstGLWindow", G_LOG_LEVEL_DEBUG,
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_window_log_handler, NULL);
|
2008-10-22 23:40:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Must be called in the gl thread */
|
|
|
|
GstGLWindow *
|
2009-10-22 23:11:27 +00:00
|
|
|
gst_gl_window_new (DWORD_PTR external_gl_context)
|
2008-10-22 23:40:52 +00:00
|
|
|
{
|
|
|
|
GstGLWindow *window = g_object_new (GST_GL_TYPE_WINDOW, NULL);
|
|
|
|
GstGLWindowPrivate *priv = window->priv;
|
2008-10-25 14:18:23 +00:00
|
|
|
|
|
|
|
HINSTANCE hinstance = GetModuleHandle (NULL);
|
|
|
|
|
2008-10-25 00:03:16 +00:00
|
|
|
static gint x = 0;
|
2008-10-22 23:40:52 +00:00
|
|
|
static gint y = 0;
|
2008-10-25 14:18:23 +00:00
|
|
|
|
2008-10-25 00:03:16 +00:00
|
|
|
x += 20;
|
|
|
|
y += 20;
|
2008-10-22 23:40:52 +00:00
|
|
|
|
|
|
|
priv->internal_win_id = 0;
|
|
|
|
priv->device = 0;
|
|
|
|
priv->gl_context = 0;
|
2009-04-18 11:57:44 +00:00
|
|
|
priv->external_gl_context = (HGLRC) external_gl_context;
|
2008-10-22 23:40:52 +00:00
|
|
|
priv->draw_cb = NULL;
|
|
|
|
priv->draw_data = NULL;
|
|
|
|
priv->resize_cb = NULL;
|
|
|
|
priv->resize_data = NULL;
|
|
|
|
priv->close_cb = NULL;
|
|
|
|
priv->close_data = NULL;
|
2008-10-25 14:18:23 +00:00
|
|
|
priv->is_closed = FALSE;
|
2008-11-22 15:43:24 +00:00
|
|
|
priv->visible = FALSE;
|
2008-10-22 23:40:52 +00:00
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
priv->internal_win_id = CreateWindowEx (0,
|
|
|
|
"GSTGL",
|
|
|
|
"OpenGL renderer",
|
|
|
|
WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_OVERLAPPEDWINDOW,
|
2009-10-22 23:11:27 +00:00
|
|
|
x, y, 0, 0, (HWND) NULL, (HMENU) NULL, hinstance, window);
|
2009-02-11 06:39:14 +00:00
|
|
|
|
|
|
|
if (!priv->internal_win_id) {
|
2009-04-20 21:48:15 +00:00
|
|
|
g_debug ("failed to create gl window: %lud\n", (gulong) priv->internal_win_id);
|
2008-10-25 14:18:23 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2008-10-22 23:40:52 +00:00
|
|
|
|
2009-04-20 21:48:15 +00:00
|
|
|
g_debug ("gl window created: %lud\n", (gulong) priv->internal_win_id);
|
2008-10-23 23:39:00 +00:00
|
|
|
|
2008-11-23 15:04:27 +00:00
|
|
|
//device is set in the window_proc
|
2008-10-22 23:40:52 +00:00
|
|
|
g_assert (priv->device);
|
|
|
|
|
|
|
|
ShowCursor (TRUE);
|
|
|
|
|
2008-10-25 14:18:23 +00:00
|
|
|
return window;
|
2008-10-22 23:40:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GQuark
|
|
|
|
gst_gl_window_error_quark (void)
|
|
|
|
{
|
|
|
|
return g_quark_from_static_string ("gst-gl-window-error");
|
|
|
|
}
|
|
|
|
|
2009-10-22 23:11:27 +00:00
|
|
|
gulong
|
|
|
|
gst_gl_window_get_internal_gl_context (GstGLWindow *window)
|
|
|
|
{
|
|
|
|
GstGLWindowPrivate *priv = window->priv;
|
|
|
|
return (gulong) priv->gl_context;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
callback_activate_gl_context (GstGLWindowPrivate *priv)
|
|
|
|
{
|
|
|
|
if (!wglMakeCurrent (priv->device, priv->gl_context))
|
|
|
|
g_debug ("failed to activate opengl context %lud\n", GetLastError ());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
callback_inactivate_gl_context (GstGLWindowPrivate *priv)
|
|
|
|
{
|
|
|
|
if (!wglMakeCurrent (NULL, NULL))
|
|
|
|
g_debug ("failed to inactivate opengl context %lud\n", GetLastError ());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gst_gl_window_activate_gl_context (GstGLWindow *window, gboolean activate)
|
|
|
|
{
|
|
|
|
GstGLWindowPrivate *priv = window->priv;
|
|
|
|
if (activate)
|
2009-10-23 18:52:32 +00:00
|
|
|
gst_gl_window_send_message (window, GST_GL_WINDOW_CB (callback_activate_gl_context), priv);
|
2009-10-22 23:11:27 +00:00
|
|
|
else
|
2009-10-23 18:52:32 +00:00
|
|
|
gst_gl_window_send_message (window, GST_GL_WINDOW_CB (callback_inactivate_gl_context), priv);
|
2009-10-22 23:11:27 +00:00
|
|
|
}
|
|
|
|
|
2008-11-23 15:04:27 +00:00
|
|
|
void
|
2009-04-20 21:48:15 +00:00
|
|
|
gst_gl_window_set_external_window_id (GstGLWindow * window, gulong id)
|
2008-10-22 23:40:52 +00:00
|
|
|
{
|
2008-10-27 23:22:27 +00:00
|
|
|
GstGLWindowPrivate *priv = window->priv;
|
2009-06-06 12:34:57 +00:00
|
|
|
|
|
|
|
//retrieve parent if previously set
|
|
|
|
HWND parent_id = GetProp (priv->internal_win_id, "gl_window_parent_id");
|
|
|
|
|
|
|
|
if (priv->visible) {
|
|
|
|
ShowWindow (priv->internal_win_id, SW_HIDE);
|
|
|
|
priv->visible = FALSE;
|
|
|
|
}
|
2009-10-23 18:52:32 +00:00
|
|
|
|
2009-06-06 12:34:57 +00:00
|
|
|
if (parent_id) {
|
|
|
|
WNDPROC parent_proc = GetProp (parent_id, "gl_window_parent_proc");
|
|
|
|
|
|
|
|
g_debug ("release parent %lud\n", (gulong) parent_id);
|
|
|
|
|
|
|
|
g_assert (parent_proc);
|
|
|
|
|
|
|
|
SetWindowLongPtr (parent_id, GWL_WNDPROC, (LONG) parent_proc);
|
|
|
|
SetParent (priv->internal_win_id, NULL);
|
|
|
|
|
|
|
|
RemoveProp (parent_id, "gl_window_parent_proc");
|
|
|
|
RemoveProp (priv->internal_win_id, "gl_window_parent_id");
|
|
|
|
}
|
|
|
|
|
|
|
|
//not 0
|
|
|
|
if (id) {
|
|
|
|
WNDPROC window_parent_proc =
|
|
|
|
(WNDPROC) GetWindowLongPtr ((HWND) id, GWL_WNDPROC);
|
|
|
|
RECT rect;
|
|
|
|
|
|
|
|
g_debug ("set parent %lud\n", (gulong) id);
|
|
|
|
|
|
|
|
SetProp (priv->internal_win_id, "gl_window_parent_id", (HWND) id);
|
|
|
|
SetProp ((HWND) id, "gl_window_id", priv->internal_win_id);
|
|
|
|
SetProp ((HWND) id, "gl_window_parent_proc", (WNDPROC) window_parent_proc);
|
|
|
|
SetWindowLongPtr ((HWND) id, GWL_WNDPROC, (LONG_PTR) sub_class_proc);
|
|
|
|
|
|
|
|
SetWindowLongPtr (priv->internal_win_id, GWL_STYLE, WS_CHILD | WS_MAXIMIZE);
|
|
|
|
SetParent (priv->internal_win_id, (HWND) id);
|
|
|
|
|
|
|
|
//take changes into account: SWP_FRAMECHANGED
|
|
|
|
GetClientRect ((HWND) id, &rect);
|
|
|
|
SetWindowPos (priv->internal_win_id, HWND_TOP, rect.left, rect.top,
|
|
|
|
rect.right, rect.bottom,
|
|
|
|
SWP_ASYNCWINDOWPOS | SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER |
|
|
|
|
SWP_FRAMECHANGED | SWP_NOACTIVATE);
|
|
|
|
MoveWindow (priv->internal_win_id, rect.left, rect.top, rect.right,
|
|
|
|
rect.bottom, FALSE);
|
|
|
|
} else {
|
|
|
|
//no parent so the internal window needs borders and system menu
|
|
|
|
SetWindowLongPtr (priv->internal_win_id, GWL_STYLE,
|
|
|
|
WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_OVERLAPPEDWINDOW);
|
|
|
|
}
|
2008-10-22 23:40:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Must be called in the gl thread */
|
|
|
|
void
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_window_set_draw_callback (GstGLWindow * window, GstGLWindowCB callback,
|
|
|
|
gpointer data)
|
2008-10-22 23:40:52 +00:00
|
|
|
{
|
|
|
|
GstGLWindowPrivate *priv = window->priv;
|
2008-11-23 15:04:27 +00:00
|
|
|
|
2008-10-22 23:40:52 +00:00
|
|
|
priv->draw_cb = callback;
|
|
|
|
priv->draw_data = data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Must be called in the gl thread */
|
|
|
|
void
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_window_set_resize_callback (GstGLWindow * window,
|
|
|
|
GstGLWindowCB2 callback, gpointer data)
|
2008-10-22 23:40:52 +00:00
|
|
|
{
|
|
|
|
GstGLWindowPrivate *priv = window->priv;
|
|
|
|
|
|
|
|
priv->resize_cb = callback;
|
|
|
|
priv->resize_data = data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Must be called in the gl thread */
|
|
|
|
void
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_window_set_close_callback (GstGLWindow * window, GstGLWindowCB callback,
|
|
|
|
gpointer data)
|
2008-10-22 23:40:52 +00:00
|
|
|
{
|
|
|
|
GstGLWindowPrivate *priv = window->priv;
|
|
|
|
|
|
|
|
priv->close_cb = callback;
|
|
|
|
priv->close_data = data;
|
|
|
|
}
|
|
|
|
|
2008-11-23 15:04:27 +00:00
|
|
|
void
|
2009-10-22 23:11:27 +00:00
|
|
|
gst_gl_window_draw_unlocked (GstGLWindow * window, gint width, gint height)
|
2008-11-23 15:04:27 +00:00
|
|
|
{
|
2009-10-22 23:11:27 +00:00
|
|
|
gst_gl_window_draw (window, width, height);
|
2008-11-23 15:04:27 +00:00
|
|
|
}
|
|
|
|
|
2008-10-22 23:40:52 +00:00
|
|
|
/* Thread safe */
|
|
|
|
void
|
2009-10-22 23:11:27 +00:00
|
|
|
gst_gl_window_draw (GstGLWindow * window, gint width, gint height)
|
2008-10-22 23:40:52 +00:00
|
|
|
{
|
|
|
|
GstGLWindowPrivate *priv = window->priv;
|
2008-10-25 14:18:23 +00:00
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
if (!priv->visible) {
|
2009-10-22 23:11:27 +00:00
|
|
|
HWND parent_id = GetProp (priv->internal_win_id, "gl_window_parent_id");
|
|
|
|
/* if no parent the real size has to be set now because this has not been done
|
|
|
|
* when at window creation */
|
|
|
|
if (!parent_id) {
|
|
|
|
RECT rect;
|
|
|
|
GetClientRect (priv->internal_win_id, &rect);
|
|
|
|
width += 2 * GetSystemMetrics (SM_CXSIZEFRAME);
|
|
|
|
height += 2 * GetSystemMetrics (SM_CYSIZEFRAME) + GetSystemMetrics (SM_CYCAPTION);
|
|
|
|
MoveWindow (priv->internal_win_id, rect.left, rect.top, width, height, FALSE);
|
|
|
|
}
|
2008-11-22 15:43:24 +00:00
|
|
|
ShowWindowAsync (priv->internal_win_id, SW_SHOW);
|
2009-10-23 18:52:32 +00:00
|
|
|
|
2008-11-22 15:43:24 +00:00
|
|
|
priv->visible = TRUE;
|
|
|
|
}
|
2008-10-22 23:40:52 +00:00
|
|
|
|
2008-10-27 23:22:27 +00:00
|
|
|
RedrawWindow (priv->internal_win_id, NULL, NULL,
|
2009-02-11 06:39:14 +00:00
|
|
|
RDW_NOERASE | RDW_INTERNALPAINT | RDW_INVALIDATE);
|
2008-10-22 23:40:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_window_run_loop (GstGLWindow * window)
|
2008-10-22 23:40:52 +00:00
|
|
|
{
|
|
|
|
gboolean running = TRUE;
|
|
|
|
gboolean bRet = FALSE;
|
|
|
|
MSG msg;
|
|
|
|
|
2008-10-23 23:39:00 +00:00
|
|
|
g_debug ("begin loop\n");
|
2008-10-22 23:40:52 +00:00
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
while (running && (bRet = GetMessage (&msg, NULL, 0, 0)) != 0) {
|
|
|
|
if (bRet == -1) {
|
2009-04-20 21:48:15 +00:00
|
|
|
g_error ("Failed to get message %lud\n", GetLastError ());
|
2009-02-11 06:39:14 +00:00
|
|
|
running = FALSE;
|
|
|
|
} else {
|
|
|
|
TranslateMessage (&msg);
|
|
|
|
DispatchMessage (&msg);
|
|
|
|
}
|
2008-10-22 23:40:52 +00:00
|
|
|
}
|
2008-10-23 23:39:00 +00:00
|
|
|
|
|
|
|
g_debug ("end loop\n");
|
2008-10-22 23:40:52 +00:00
|
|
|
}
|
|
|
|
|
2008-10-23 23:39:00 +00:00
|
|
|
/* Thread safe */
|
2008-10-22 23:40:52 +00:00
|
|
|
void
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_window_quit_loop (GstGLWindow * window, GstGLWindowCB callback,
|
|
|
|
gpointer data)
|
2008-10-22 23:40:52 +00:00
|
|
|
{
|
2009-02-11 06:39:14 +00:00
|
|
|
if (window) {
|
2008-10-23 23:39:00 +00:00
|
|
|
GstGLWindowPrivate *priv = window->priv;
|
2009-02-11 06:39:14 +00:00
|
|
|
LRESULT res = PostMessage (priv->internal_win_id, WM_GST_GL_WINDOW_QUIT,
|
|
|
|
(WPARAM) data, (LPARAM) callback);
|
2008-10-23 23:39:00 +00:00
|
|
|
g_assert (SUCCEEDED (res));
|
2008-10-25 00:03:16 +00:00
|
|
|
g_debug ("end loop requested\n");
|
2008-10-23 23:39:00 +00:00
|
|
|
}
|
2008-10-22 23:40:52 +00:00
|
|
|
}
|
|
|
|
|
2008-10-23 23:39:00 +00:00
|
|
|
/* Thread safe */
|
2008-10-22 23:40:52 +00:00
|
|
|
void
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_window_send_message (GstGLWindow * window, GstGLWindowCB callback,
|
|
|
|
gpointer data)
|
2008-10-22 23:40:52 +00:00
|
|
|
{
|
2009-02-11 06:39:14 +00:00
|
|
|
if (window) {
|
2008-10-23 23:39:00 +00:00
|
|
|
GstGLWindowPrivate *priv = window->priv;
|
2009-02-11 06:39:14 +00:00
|
|
|
LRESULT res = SendMessage (priv->internal_win_id, WM_GST_GL_WINDOW_CUSTOM,
|
|
|
|
(WPARAM) data, (LPARAM) callback);
|
2008-10-23 23:39:00 +00:00
|
|
|
g_assert (SUCCEEDED (res));
|
|
|
|
}
|
2008-10-22 23:40:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* PRIVATE */
|
|
|
|
|
|
|
|
void
|
2009-02-11 06:39:14 +00:00
|
|
|
gst_gl_window_set_pixel_format (GstGLWindow * window)
|
2008-10-22 23:40:52 +00:00
|
|
|
{
|
2009-02-11 06:39:14 +00:00
|
|
|
GstGLWindowPrivate *priv = window->priv;
|
|
|
|
PIXELFORMATDESCRIPTOR pfd;
|
|
|
|
gint pixelformat = 0;
|
|
|
|
gboolean res = FALSE;
|
|
|
|
|
|
|
|
pfd.nSize = sizeof (PIXELFORMATDESCRIPTOR);
|
|
|
|
pfd.nVersion = 1;
|
|
|
|
pfd.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER;
|
|
|
|
pfd.iPixelType = PFD_TYPE_RGBA;
|
|
|
|
pfd.cColorBits = 24;
|
2009-10-22 23:11:27 +00:00
|
|
|
pfd.cRedBits = 8;
|
2009-02-11 06:39:14 +00:00
|
|
|
pfd.cRedShift = 0;
|
2009-10-22 23:11:27 +00:00
|
|
|
pfd.cGreenBits = 8;
|
2009-02-11 06:39:14 +00:00
|
|
|
pfd.cGreenShift = 0;
|
2009-10-22 23:11:27 +00:00
|
|
|
pfd.cBlueBits = 8;
|
2009-02-11 06:39:14 +00:00
|
|
|
pfd.cBlueShift = 0;
|
|
|
|
pfd.cAlphaBits = 0;
|
|
|
|
pfd.cAlphaShift = 0;
|
|
|
|
pfd.cAccumBits = 0;
|
|
|
|
pfd.cAccumRedBits = 0;
|
|
|
|
pfd.cAccumGreenBits = 0;
|
|
|
|
pfd.cAccumBlueBits = 0;
|
|
|
|
pfd.cAccumAlphaBits = 0;
|
2009-10-22 23:11:27 +00:00
|
|
|
pfd.cDepthBits = 24;
|
2009-02-11 06:39:14 +00:00
|
|
|
pfd.cStencilBits = 8;
|
|
|
|
pfd.cAuxBuffers = 0;
|
|
|
|
pfd.iLayerType = PFD_MAIN_PLANE;
|
|
|
|
pfd.bReserved = 0;
|
|
|
|
pfd.dwLayerMask = 0;
|
|
|
|
pfd.dwVisibleMask = 0;
|
|
|
|
pfd.dwDamageMask = 0;
|
|
|
|
|
|
|
|
pfd.cColorBits = (BYTE) GetDeviceCaps (priv->device, BITSPIXEL);
|
|
|
|
|
|
|
|
pixelformat = ChoosePixelFormat (priv->device, &pfd);
|
|
|
|
|
|
|
|
g_assert (pixelformat);
|
|
|
|
|
|
|
|
res = SetPixelFormat (priv->device, pixelformat, &pfd);
|
|
|
|
|
|
|
|
g_assert (res);
|
2008-10-22 23:40:52 +00:00
|
|
|
}
|
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
LRESULT CALLBACK
|
|
|
|
window_proc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
2008-10-22 23:40:52 +00:00
|
|
|
{
|
|
|
|
if (uMsg == WM_CREATE) {
|
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
GstGLWindow *window =
|
|
|
|
(GstGLWindow *) (((LPCREATESTRUCT) lParam)->lpCreateParams);
|
2008-10-22 23:40:52 +00:00
|
|
|
|
|
|
|
g_debug ("WM_CREATE\n");
|
|
|
|
|
|
|
|
g_assert (window);
|
|
|
|
|
|
|
|
{
|
|
|
|
GstGLWindowPrivate *priv = window->priv;
|
|
|
|
priv->device = GetDC (hWnd);
|
|
|
|
gst_gl_window_set_pixel_format (window);
|
|
|
|
priv->gl_context = wglCreateContext (priv->device);
|
2008-10-25 00:03:16 +00:00
|
|
|
if (priv->gl_context)
|
2009-04-20 21:48:15 +00:00
|
|
|
g_debug ("gl context created: %lud\n", (gulong) priv->gl_context);
|
2008-10-25 00:03:16 +00:00
|
|
|
else
|
2009-04-20 21:48:15 +00:00
|
|
|
g_debug ("failed to create glcontext %lud, %lud\n", (gulong) hWnd,
|
2009-02-11 06:39:14 +00:00
|
|
|
GetLastError ());
|
2008-10-25 00:03:16 +00:00
|
|
|
g_assert (priv->gl_context);
|
2008-10-22 23:40:52 +00:00
|
|
|
ReleaseDC (hWnd, priv->device);
|
2008-10-25 14:18:23 +00:00
|
|
|
if (!wglMakeCurrent (priv->device, priv->gl_context))
|
2009-04-20 21:48:15 +00:00
|
|
|
g_debug ("failed to make opengl context current %lud, %lud\n", (gulong) hWnd,
|
2009-02-11 06:39:14 +00:00
|
|
|
GetLastError ());
|
2009-04-18 11:57:44 +00:00
|
|
|
|
|
|
|
if (priv->external_gl_context) {
|
2010-03-09 00:35:42 +00:00
|
|
|
if (!wglShareLists (priv->external_gl_context, priv->gl_context))
|
2009-04-18 11:57:44 +00:00
|
|
|
g_debug ("failed to share opengl context %lud with %lud\n",
|
2009-04-20 21:48:15 +00:00
|
|
|
(gulong) priv->gl_context, (gulong) priv->external_gl_context);
|
2009-04-18 11:57:44 +00:00
|
|
|
else
|
2009-04-30 21:40:38 +00:00
|
|
|
g_debug ("share opengl context succeed %lud\n", (gulong) priv->external_gl_context);
|
2009-04-18 11:57:44 +00:00
|
|
|
}
|
2008-10-22 23:40:52 +00:00
|
|
|
}
|
|
|
|
|
2008-10-28 20:44:09 +00:00
|
|
|
SetProp (hWnd, "gl_window", window);
|
2008-10-25 14:18:23 +00:00
|
|
|
|
2008-10-23 23:39:00 +00:00
|
|
|
return 0;
|
2009-02-11 06:39:14 +00:00
|
|
|
} else if (GetProp (hWnd, "gl_window")) {
|
2008-10-22 23:40:52 +00:00
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
GstGLWindow *window = GetProp (hWnd, "gl_window");
|
2008-10-22 23:40:52 +00:00
|
|
|
GstGLWindowPrivate *priv = NULL;
|
|
|
|
|
|
|
|
g_assert (window);
|
|
|
|
|
|
|
|
priv = window->priv;
|
|
|
|
|
|
|
|
g_assert (priv);
|
|
|
|
|
2008-10-25 00:03:16 +00:00
|
|
|
g_assert (priv->internal_win_id == hWnd);
|
|
|
|
|
2009-10-22 23:11:27 +00:00
|
|
|
g_assert (!wglGetCurrentContext() || priv->gl_context == wglGetCurrentContext ());
|
2008-10-25 14:18:23 +00:00
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
switch (uMsg) {
|
2008-10-22 23:40:52 +00:00
|
|
|
|
|
|
|
case WM_SIZE:
|
|
|
|
{
|
2009-10-22 23:11:27 +00:00
|
|
|
if (priv->resize_cb) {
|
2009-02-11 06:39:14 +00:00
|
|
|
priv->resize_cb (priv->resize_data, LOWORD (lParam), HIWORD (lParam));
|
2009-10-22 23:11:27 +00:00
|
|
|
}
|
2008-10-22 23:40:52 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WM_PAINT:
|
2008-11-23 15:04:27 +00:00
|
|
|
{
|
2009-02-11 06:39:14 +00:00
|
|
|
if (priv->draw_cb) {
|
2008-10-22 23:40:52 +00:00
|
|
|
PAINTSTRUCT ps;
|
|
|
|
BeginPaint (hWnd, &ps);
|
|
|
|
priv->draw_cb (priv->draw_data);
|
|
|
|
SwapBuffers (priv->device);
|
|
|
|
EndPaint (hWnd, &ps);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WM_CLOSE:
|
2008-11-22 15:43:24 +00:00
|
|
|
{
|
|
|
|
ShowWindowAsync (priv->internal_win_id, SW_HIDE);
|
2008-11-23 15:04:27 +00:00
|
|
|
|
2008-11-22 15:43:24 +00:00
|
|
|
if (priv->close_cb)
|
2009-02-11 06:39:14 +00:00
|
|
|
priv->close_cb (priv->close_data);
|
|
|
|
|
|
|
|
priv->draw_cb = NULL;
|
|
|
|
priv->draw_data = NULL;
|
|
|
|
priv->resize_cb = NULL;
|
|
|
|
priv->resize_data = NULL;
|
|
|
|
priv->close_cb = NULL;
|
|
|
|
priv->close_data = NULL;
|
2008-11-22 15:43:24 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WM_GST_GL_WINDOW_QUIT:
|
2008-10-22 23:40:52 +00:00
|
|
|
{
|
2008-10-28 20:44:09 +00:00
|
|
|
HWND parent_id = 0;
|
2008-11-22 15:43:24 +00:00
|
|
|
GstGLWindowCB destroy_cb = (GstGLWindowCB) lParam;
|
2008-10-28 20:44:09 +00:00
|
|
|
|
2008-10-22 23:40:52 +00:00
|
|
|
g_debug ("WM_CLOSE\n");
|
2008-10-28 20:44:09 +00:00
|
|
|
|
2008-11-22 15:43:24 +00:00
|
|
|
destroy_cb ((gpointer) wParam);
|
|
|
|
|
2008-10-28 20:44:09 +00:00
|
|
|
parent_id = GetProp (hWnd, "gl_window_parent_id");
|
2009-02-11 06:39:14 +00:00
|
|
|
if (parent_id) {
|
2008-10-28 20:44:09 +00:00
|
|
|
WNDPROC parent_proc = GetProp (parent_id, "gl_window_parent_proc");
|
2008-11-23 15:04:27 +00:00
|
|
|
|
2008-10-28 20:44:09 +00:00
|
|
|
g_assert (parent_proc);
|
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
SetWindowLongPtr (parent_id, GWL_WNDPROC,
|
2009-04-20 21:48:15 +00:00
|
|
|
(LONG) parent_proc);
|
2008-10-28 20:44:09 +00:00
|
|
|
SetParent (hWnd, NULL);
|
|
|
|
|
|
|
|
RemoveProp (parent_id, "gl_window_parent_proc");
|
|
|
|
RemoveProp (hWnd, "gl_window_parent_id");
|
|
|
|
}
|
|
|
|
|
2008-10-25 14:18:23 +00:00
|
|
|
priv->is_closed = TRUE;
|
2008-10-28 20:44:09 +00:00
|
|
|
RemoveProp (hWnd, "gl_window");
|
2008-10-25 14:18:23 +00:00
|
|
|
|
|
|
|
if (!wglMakeCurrent (NULL, NULL))
|
2009-04-20 21:48:15 +00:00
|
|
|
g_debug ("failed to make current %lud, %lud\n", (gulong) hWnd, GetLastError ());
|
2008-10-22 23:40:52 +00:00
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
if (priv->gl_context) {
|
2008-10-25 14:18:23 +00:00
|
|
|
if (!wglDeleteContext (priv->gl_context))
|
2009-04-20 21:48:15 +00:00
|
|
|
g_debug ("failed to destroy context %lud, %lud\n", (gulong) priv->gl_context,
|
2009-02-11 06:39:14 +00:00
|
|
|
GetLastError ());
|
2008-10-25 14:18:23 +00:00
|
|
|
}
|
2008-10-25 00:03:16 +00:00
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
if (priv->internal_win_id) {
|
|
|
|
if (!DestroyWindow (priv->internal_win_id))
|
2009-04-20 21:48:15 +00:00
|
|
|
g_debug ("failed to destroy window %lud, %lud\n", (gulong) hWnd,
|
2009-02-11 06:39:14 +00:00
|
|
|
GetLastError ());
|
2008-10-25 14:18:23 +00:00
|
|
|
}
|
2008-11-23 15:04:27 +00:00
|
|
|
|
2008-10-22 23:40:52 +00:00
|
|
|
PostQuitMessage (0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WM_CAPTURECHANGED:
|
|
|
|
{
|
|
|
|
g_debug ("WM_CAPTURECHANGED\n");
|
|
|
|
if (priv->draw_cb)
|
|
|
|
priv->draw_cb (priv->draw_data);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-11-22 15:43:24 +00:00
|
|
|
case WM_GST_GL_WINDOW_CUSTOM:
|
2008-10-22 23:40:52 +00:00
|
|
|
{
|
2009-02-11 06:39:14 +00:00
|
|
|
if (!priv->is_closed) {
|
2008-10-25 14:18:23 +00:00
|
|
|
GstGLWindowCB custom_cb = (GstGLWindowCB) lParam;
|
|
|
|
custom_cb ((gpointer) wParam);
|
|
|
|
}
|
2008-10-22 23:40:52 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-10-25 00:03:16 +00:00
|
|
|
case WM_ERASEBKGND:
|
|
|
|
return TRUE;
|
|
|
|
|
2008-10-22 23:40:52 +00:00
|
|
|
default:
|
2009-03-06 21:43:41 +00:00
|
|
|
{
|
|
|
|
/* transmit messages to the parrent (ex: mouse/keyboard input) */
|
|
|
|
HWND parent_id = GetProp (hWnd, "gl_window_parent_id");
|
|
|
|
if (parent_id)
|
|
|
|
PostMessage (parent_id, uMsg, wParam, lParam);
|
|
|
|
return DefWindowProc (hWnd, uMsg, wParam, lParam);
|
|
|
|
}
|
2008-10-22 23:40:52 +00:00
|
|
|
}
|
|
|
|
|
2008-10-23 23:39:00 +00:00
|
|
|
return 0;
|
2009-02-11 06:39:14 +00:00
|
|
|
} else
|
|
|
|
return DefWindowProc (hWnd, uMsg, wParam, lParam);
|
2008-10-22 23:40:52 +00:00
|
|
|
}
|
2008-10-27 23:22:27 +00:00
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
LRESULT FAR PASCAL
|
|
|
|
sub_class_proc (HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
2008-10-27 23:22:27 +00:00
|
|
|
{
|
|
|
|
WNDPROC window_parent_proc = GetProp (hWnd, "gl_window_parent_proc");
|
2008-11-23 15:04:27 +00:00
|
|
|
|
2009-02-11 06:39:14 +00:00
|
|
|
if (uMsg == WM_SIZE) {
|
2008-10-28 20:44:09 +00:00
|
|
|
HWND gl_window_id = GetProp (hWnd, "gl_window_id");
|
2009-02-11 06:39:14 +00:00
|
|
|
MoveWindow (gl_window_id, 0, 0, LOWORD (lParam), HIWORD (lParam), FALSE);
|
2008-10-27 23:22:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return CallWindowProc (window_parent_proc, hWnd, uMsg, wParam, lParam);
|
|
|
|
}
|