00001 /***************************************************************************** 00002 * voutagl.c: MacOS X agl OpenGL provider (used by webbrowser.plugin) 00003 ***************************************************************************** 00004 * Copyright (C) 2001-2004 the VideoLAN team 00005 * $Id$ 00006 * 00007 * Authors: Colin Delacroix <colin@zoy.org> 00008 * Florian G. Pflug <fgp@phlo.org> 00009 * Jon Lech Johansen <jon-vl@nanocrew.net> 00010 * Derk-Jan Hartman <hartman at videolan dot org> 00011 * Eric Petit <titer@m0k.org> 00012 * Benjamin Pracht <bigben at videolan dot org> 00013 * Damien Fouilleul <damienf at videolan dot org> 00014 * 00015 * This program is free software; you can redistribute it and/or modify 00016 * it under the terms of the GNU General Public License as published by 00017 * the Free Software Foundation; either version 2 of the License, or 00018 * (at your option) any later version. 00019 * 00020 * This program is distributed in the hope that it will be useful, 00021 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00022 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00023 * GNU General Public License for more details. 00024 * 00025 * You should have received a copy of the GNU General Public License 00026 * along with this program; if not, write to the Free Software 00027 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 00028 *****************************************************************************/ 00029 00030 #include <OpenGL/OpenGL.h> 00031 #include <OpenGL/gl.h> 00032 00033 #include <AGL/agl.h> 00034 00035 #include <vlc_common.h> 00036 00037 int aglInit ( vout_thread_t * p_vout ); 00038 void aglEnd ( vout_thread_t * p_vout ); 00039 int aglManage ( vout_thread_t * p_vout ); 00040 int aglControl( vout_thread_t *, int, va_list ); 00041 void aglSwap ( vout_thread_t * p_vout ); 00042 int aglLock ( vout_thread_t * p_vout ); 00043 void aglUnlock ( vout_thread_t * p_vout );
1.5.1