f814ed017b1888ccead03434ca30430505f67b0a
[mesa.git] / src / mesa / drivers / dri / i965 / intel_screen.h
1 /**************************************************************************
2 *
3 * Copyright 2003 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 #ifndef _INTEL_INIT_H_
29 #define _INTEL_INIT_H_
30
31 #include <stdbool.h>
32 #include <sys/time.h>
33 #include "dri_util.h"
34 #include "intel_bufmgr.h"
35 #include "brw_device_info.h"
36 #include "i915_drm.h"
37 #include "xmlconfig.h"
38
39 struct intel_screen
40 {
41 int deviceID;
42 const struct brw_device_info *devinfo;
43
44 __DRIscreen *driScrnPriv;
45
46 bool no_hw;
47
48 bool hw_must_use_separate_stencil;
49
50 bool hw_has_swizzling;
51
52 /**
53 * Does the kernel support context reset notifications?
54 */
55 bool has_context_reset_notification;
56
57 dri_bufmgr *bufmgr;
58
59 /**
60 * A unique ID for shader programs.
61 */
62 unsigned program_id;
63
64 int winsys_msaa_samples_override;
65
66 struct brw_compiler *compiler;
67
68 /**
69 * Configuration cache with default values for all contexts
70 */
71 driOptionCache optionCache;
72 };
73
74 extern void intelDestroyContext(__DRIcontext * driContextPriv);
75
76 extern GLboolean intelUnbindContext(__DRIcontext * driContextPriv);
77
78 PUBLIC const __DRIextension **__driDriverGetExtensions_i965(void);
79
80 extern GLboolean
81 intelMakeCurrent(__DRIcontext * driContextPriv,
82 __DRIdrawable * driDrawPriv,
83 __DRIdrawable * driReadPriv);
84
85 double get_time(void);
86 void aub_dump_bmp(struct gl_context *ctx);
87
88 const int*
89 intel_supported_msaa_modes(const struct intel_screen *screen);
90
91 #endif