mirror of
https://github.com/brl/mutter.git
synced 2024-11-10 07:56:14 -05:00
df51574116
This adds api to be able to request that the window system allows a given onscreen framebuffer to be resizable, and api to add and remove resize handlers to be called whenever the framebuffer does actually change size. The new functions are: cogl_onscreen_{get,set}_resizable() cogl_onscreen_{add,remove}_resize_handler() The examples cogl-hello and cogl-x11-foreign have been updated to use the new api. To smoke test how Cogl updates the viewport automatically in response to window resizes the cogl-hello test doesn't explicitly respond to resize events by setting the viewport and cogl-x11-foreign responds by setting a viewport that is offset by a quarter of the window's width/height and half the width and height of the window. Reviewed-by: Neil Roberts <neil@linux.intel.com> (cherry picked from commit a1a8cc00bfa2cecaf1007aec5f3dd95dc07b1786)
58 lines
1.5 KiB
C
58 lines
1.5 KiB
C
/*
|
|
* Cogl
|
|
*
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
|
*
|
|
* Copyright (C) 2011 Intel Corporation.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*
|
|
*
|
|
*/
|
|
|
|
#ifndef __COGL_DISPLAY_GLX_PRIVATE_H
|
|
#define __COGL_DISPLAY_GLX_PRIVATE_H
|
|
|
|
#include "cogl-object-private.h"
|
|
|
|
typedef struct _CoglGLXCachedConfig
|
|
{
|
|
/* This will be -1 if there is no cached config in this slot */
|
|
int depth;
|
|
CoglBool found;
|
|
GLXFBConfig fb_config;
|
|
CoglBool can_mipmap;
|
|
} CoglGLXCachedConfig;
|
|
|
|
#define COGL_GLX_N_CACHED_CONFIGS 3
|
|
|
|
typedef struct _CoglGLXDisplay
|
|
{
|
|
CoglGLXCachedConfig glx_cached_configs[COGL_GLX_N_CACHED_CONFIGS];
|
|
|
|
CoglBool found_fbconfig;
|
|
CoglBool fbconfig_has_rgba_visual;
|
|
GLXFBConfig fbconfig;
|
|
|
|
/* Single context for all wins */
|
|
GLXContext glx_context;
|
|
GLXWindow dummy_glxwin;
|
|
Window dummy_xwin;
|
|
CoglBool pending_swap_notify;
|
|
CoglBool pending_resize_notify;
|
|
} CoglGLXDisplay;
|
|
|
|
#endif /* __COGL_DISPLAY_GLX_PRIVATE_H */
|