040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync/*
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * Copyright © 2008 Red Hat, Inc
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync *
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * Permission to use, copy, modify, distribute, and sell this software
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * and its documentation for any purpose is hereby granted without
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * fee, provided that the above copyright notice appear in all copies
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * and that both that copyright notice and this permission notice
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * appear in supporting documentation, and that the name of the
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * copyright holders not be used in advertising or publicity
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * pertaining to distribution of the software without specific,
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * written prior permission. The copyright holders make no
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * representations about the suitability of this software for any
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * purpose. It is provided "as is" without express or implied
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * warranty.
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync *
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync * SOFTWARE.
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync */
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync#ifndef _GLX_dri_common_h
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync#define _GLX_dri_common_h
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsynctypedef struct __GLXDRIconfig __GLXDRIconfig;
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsyncstruct __GLXDRIconfig {
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync __GLXconfig config;
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync const __DRIconfig *driConfig;
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync};
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync__GLXconfig *
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsyncglxConvertConfigs(const __DRIcoreExtension *core, const __DRIconfig **configs);
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsyncextern const __DRIsystemTimeExtension systemTimeExtension;
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync
040abec2534dadc53ebc8fa378ef03f4feecb7dbvboxsync#endif