voutgl.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * voutgl.h: MacOS X OpenGL provider
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2007 the VideoLAN team
  5.  * $Id: 3e51ea08c9d4fb2031e9eddbd383795f8ede7d30 $
  6.  *
  7.  * Authors: Colin Delacroix <colin@zoy.org>
  8.  *          Florian G. Pflug <fgp@phlo.org>
  9.  *          Jon Lech Johansen <jon-vl@nanocrew.net>
  10.  *          Eric Petit <titer@m0k.org>
  11.  *          Benjamin Pracht <bigben at videolan dot org>
  12.  *
  13.  * This program is free software; you can redistribute it and/or modify
  14.  * it under the terms of the GNU General Public License as published by
  15.  * the Free Software Foundation; either version 2 of the License, or
  16.  * (at your option) any later version.
  17.  *
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  *
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  26.  *****************************************************************************/
  27. #import <Cocoa/Cocoa.h>
  28. #import "VLCOpenGLVoutView.h"
  29. #import "voutagl.h"
  30. struct vout_sys_t
  31. {
  32.     NSAutoreleasePool * o_pool;
  33.     VLCOpenGLVoutView * o_glview;
  34.     bool                b_saved_frame;
  35.     NSRect              s_frame;
  36.     bool                b_got_frame;
  37.     /* Mozilla plugin-related variables */
  38.     bool                b_embedded;
  39.     AGLContext          agl_ctx;
  40.     AGLDrawable         agl_drawable;
  41.     int                 i_offx, i_offy;
  42.     int                 i_width, i_height;
  43.     WindowRef           theWindow;
  44.     WindowGroupRef      winGroup;
  45.     bool                b_clipped_out;
  46.     Rect                clipBounds, viewBounds;
  47. };