dri_context.h revision 444d8408e75bb2bce019769da59802f05c3d5fab
1/**************************************************************************
2 *
3 * Copyright (C) 2009 VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27/*
28 * Author: Keith Whitwell <keithw@vmware.com>
29 * Author: Jakob Bornecrantz <wallbraker@gmail.com>
30 */
31
32#ifndef DRI_CONTEXT_H
33#define DRI_CONTEXT_H
34
35#include "pipe/p_compiler.h"
36#include "dri_wrapper.h"
37
38struct pipe_context;
39struct pipe_fence;
40struct st_api;
41struct st_context_iface;
42struct dri_drawable;
43
44struct dri_context
45{
46   /* dri */
47   __DRIscreen *sPriv;
48   __DRIcontext *cPriv;
49   __DRIdrawable *dPriv;
50   __DRIdrawable *rPriv;
51
52   driOptionCache optionCache;
53
54   drmLock *lock;
55   boolean isLocked;
56   boolean stLostLock;
57   boolean wsLostLock;
58
59   unsigned int bind_count;
60
61   /* gallium */
62   struct st_api *stapi;
63   struct st_context_iface *st;
64
65   /* hooks filled in by dri2 & drisw */
66   __DRIimage * (*lookup_egl_image)(struct dri_context *ctx, void *handle);
67};
68
69static INLINE struct dri_context *
70dri_context(__DRIcontext * driContextPriv)
71{
72   if (!driContextPriv)
73     return NULL;
74   return (struct dri_context *)driContextPriv->driverPrivate;
75}
76
77/***********************************************************************
78 * dri_context.c
79 */
80void dri_destroy_context(__DRIcontext * driContextPriv);
81
82boolean dri_unbind_context(__DRIcontext * driContextPriv);
83
84boolean
85dri_make_current(__DRIcontext * driContextPriv,
86		 __DRIdrawable * driDrawPriv,
87		 __DRIdrawable * driReadPriv);
88
89struct dri_context *
90dri_get_current(__DRIscreen * driScreenPriv);
91
92boolean
93dri_create_context(gl_api api,
94		   const __GLcontextModes * visual,
95		   __DRIcontext * driContextPriv,
96		   void *sharedContextPrivate);
97
98#endif
99
100/* vim: set sw=3 ts=8 sts=3 expandtab: */
101