intel: Add assertions to intelCreateBuffer()
[mesa.git] / src / mesa / drivers / dri / intel / intel_screen.c
1 /**************************************************************************
2 *
3 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
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 TUNGSTEN GRAPHICS 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 #include <errno.h>
29 #include "main/glheader.h"
30 #include "main/context.h"
31 #include "main/framebuffer.h"
32 #include "main/renderbuffer.h"
33 #include "main/hash.h"
34 #include "main/fbobject.h"
35 #include "main/mfeatures.h"
36
37 #include "utils.h"
38 #include "xmlpool.h"
39
40 PUBLIC const char __driConfigOptions[] =
41 DRI_CONF_BEGIN
42 DRI_CONF_SECTION_PERFORMANCE
43 DRI_CONF_VBLANK_MODE(DRI_CONF_VBLANK_ALWAYS_SYNC)
44 /* Options correspond to DRI_CONF_BO_REUSE_DISABLED,
45 * DRI_CONF_BO_REUSE_ALL
46 */
47 DRI_CONF_OPT_BEGIN_V(bo_reuse, enum, 1, "0:1")
48 DRI_CONF_DESC_BEGIN(en, "Buffer object reuse")
49 DRI_CONF_ENUM(0, "Disable buffer object reuse")
50 DRI_CONF_ENUM(1, "Enable reuse of all sizes of buffer objects")
51 DRI_CONF_DESC_END
52 DRI_CONF_OPT_END
53
54 DRI_CONF_OPT_BEGIN(texture_tiling, bool, true)
55 DRI_CONF_DESC(en, "Enable texture tiling")
56 DRI_CONF_OPT_END
57
58 DRI_CONF_OPT_BEGIN(early_z, bool, false)
59 DRI_CONF_DESC(en, "Enable early Z in classic mode (unstable, 945-only).")
60 DRI_CONF_OPT_END
61
62 DRI_CONF_OPT_BEGIN(fragment_shader, bool, true)
63 DRI_CONF_DESC(en, "Enable limited ARB_fragment_shader support on 915/945.")
64 DRI_CONF_OPT_END
65
66 DRI_CONF_SECTION_END
67 DRI_CONF_SECTION_QUALITY
68 DRI_CONF_FORCE_S3TC_ENABLE(false)
69 DRI_CONF_ALLOW_LARGE_TEXTURES(2)
70 DRI_CONF_SECTION_END
71 DRI_CONF_SECTION_DEBUG
72 DRI_CONF_NO_RAST(false)
73 DRI_CONF_ALWAYS_FLUSH_BATCH(false)
74 DRI_CONF_ALWAYS_FLUSH_CACHE(false)
75
76 DRI_CONF_OPT_BEGIN(stub_occlusion_query, bool, false)
77 DRI_CONF_DESC(en, "Enable stub ARB_occlusion_query support on 915/945.")
78 DRI_CONF_OPT_END
79 DRI_CONF_SECTION_END
80 DRI_CONF_END;
81
82 const GLuint __driNConfigOptions = 11;
83
84 #include "intel_batchbuffer.h"
85 #include "intel_buffers.h"
86 #include "intel_bufmgr.h"
87 #include "intel_chipset.h"
88 #include "intel_fbo.h"
89 #include "intel_screen.h"
90 #include "intel_tex.h"
91 #include "intel_regions.h"
92
93 #include "i915_drm.h"
94
95 #ifdef USE_NEW_INTERFACE
96 static PFNGLXCREATECONTEXTMODES create_context_modes = NULL;
97 #endif /*USE_NEW_INTERFACE */
98
99 static const __DRItexBufferExtension intelTexBufferExtension = {
100 { __DRI_TEX_BUFFER, __DRI_TEX_BUFFER_VERSION },
101 intelSetTexBuffer,
102 intelSetTexBuffer2,
103 };
104
105 static void
106 intelDRI2Flush(__DRIdrawable *drawable)
107 {
108 GET_CURRENT_CONTEXT(ctx);
109 struct intel_context *intel = intel_context(ctx);
110
111 if (intel->gen < 4)
112 INTEL_FIREVERTICES(intel);
113
114 intel->need_throttle = GL_TRUE;
115
116 if (intel->batch.used)
117 intel_batchbuffer_flush(intel);
118 }
119
120 static const struct __DRI2flushExtensionRec intelFlushExtension = {
121 { __DRI2_FLUSH, __DRI2_FLUSH_VERSION },
122 intelDRI2Flush,
123 dri2InvalidateDrawable,
124 };
125
126 static __DRIimage *
127 intel_create_image_from_name(__DRIscreen *screen,
128 int width, int height, int format,
129 int name, int pitch, void *loaderPrivate)
130 {
131 struct intel_screen *intelScreen = screen->private;
132 __DRIimage *image;
133 int cpp;
134
135 image = CALLOC(sizeof *image);
136 if (image == NULL)
137 return NULL;
138
139 switch (format) {
140 case __DRI_IMAGE_FORMAT_RGB565:
141 image->format = MESA_FORMAT_RGB565;
142 image->internal_format = GL_RGB;
143 image->data_type = GL_UNSIGNED_BYTE;
144 break;
145 case __DRI_IMAGE_FORMAT_XRGB8888:
146 image->format = MESA_FORMAT_XRGB8888;
147 image->internal_format = GL_RGB;
148 image->data_type = GL_UNSIGNED_BYTE;
149 break;
150 case __DRI_IMAGE_FORMAT_ARGB8888:
151 image->format = MESA_FORMAT_ARGB8888;
152 image->internal_format = GL_RGBA;
153 image->data_type = GL_UNSIGNED_BYTE;
154 break;
155 default:
156 free(image);
157 return NULL;
158 }
159
160 image->data = loaderPrivate;
161 cpp = _mesa_get_format_bytes(image->format);
162
163 image->region = intel_region_alloc_for_handle(intelScreen,
164 cpp, width, height,
165 pitch, name, "image");
166 if (image->region == NULL) {
167 FREE(image);
168 return NULL;
169 }
170
171 return image;
172 }
173
174 static __DRIimage *
175 intel_create_image_from_renderbuffer(__DRIcontext *context,
176 int renderbuffer, void *loaderPrivate)
177 {
178 __DRIimage *image;
179 struct intel_context *intel = context->driverPrivate;
180 struct gl_renderbuffer *rb;
181 struct intel_renderbuffer *irb;
182
183 rb = _mesa_lookup_renderbuffer(&intel->ctx, renderbuffer);
184 if (!rb) {
185 _mesa_error(&intel->ctx,
186 GL_INVALID_OPERATION, "glRenderbufferExternalMESA");
187 return NULL;
188 }
189
190 irb = intel_renderbuffer(rb);
191 image = CALLOC(sizeof *image);
192 if (image == NULL)
193 return NULL;
194
195 image->internal_format = rb->InternalFormat;
196 image->format = rb->Format;
197 image->data_type = rb->DataType;
198 image->data = loaderPrivate;
199 intel_region_reference(&image->region, irb->region);
200
201 return image;
202 }
203
204 static void
205 intel_destroy_image(__DRIimage *image)
206 {
207 intel_region_release(&image->region);
208 FREE(image);
209 }
210
211 static __DRIimage *
212 intel_create_image(__DRIscreen *screen,
213 int width, int height, int format,
214 unsigned int use,
215 void *loaderPrivate)
216 {
217 __DRIimage *image;
218 struct intel_screen *intelScreen = screen->private;
219 uint32_t tiling;
220 int cpp;
221
222 tiling = I915_TILING_X;
223 if (use & __DRI_IMAGE_USE_CURSOR) {
224 if (width != 64 || height != 64)
225 return NULL;
226 tiling = I915_TILING_NONE;
227 }
228
229 image = CALLOC(sizeof *image);
230 if (image == NULL)
231 return NULL;
232
233 switch (format) {
234 case __DRI_IMAGE_FORMAT_RGB565:
235 image->format = MESA_FORMAT_RGB565;
236 image->internal_format = GL_RGB;
237 image->data_type = GL_UNSIGNED_BYTE;
238 break;
239 case __DRI_IMAGE_FORMAT_XRGB8888:
240 image->format = MESA_FORMAT_XRGB8888;
241 image->internal_format = GL_RGB;
242 image->data_type = GL_UNSIGNED_BYTE;
243 break;
244 case __DRI_IMAGE_FORMAT_ARGB8888:
245 image->format = MESA_FORMAT_ARGB8888;
246 image->internal_format = GL_RGBA;
247 image->data_type = GL_UNSIGNED_BYTE;
248 break;
249 default:
250 free(image);
251 return NULL;
252 }
253
254 image->data = loaderPrivate;
255 cpp = _mesa_get_format_bytes(image->format);
256
257 image->region =
258 intel_region_alloc(intelScreen, tiling,
259 cpp, width, height, GL_TRUE);
260 if (image->region == NULL) {
261 FREE(image);
262 return NULL;
263 }
264
265 return image;
266 }
267
268 static GLboolean
269 intel_query_image(__DRIimage *image, int attrib, int *value)
270 {
271 switch (attrib) {
272 case __DRI_IMAGE_ATTRIB_STRIDE:
273 *value = image->region->pitch * image->region->cpp;
274 return GL_TRUE;
275 case __DRI_IMAGE_ATTRIB_HANDLE:
276 *value = image->region->buffer->handle;
277 return GL_TRUE;
278 case __DRI_IMAGE_ATTRIB_NAME:
279 return intel_region_flink(image->region, (uint32_t *) value);
280 default:
281 return GL_FALSE;
282 }
283 }
284
285 static struct __DRIimageExtensionRec intelImageExtension = {
286 { __DRI_IMAGE, __DRI_IMAGE_VERSION },
287 intel_create_image_from_name,
288 intel_create_image_from_renderbuffer,
289 intel_destroy_image,
290 intel_create_image,
291 intel_query_image
292 };
293
294 static const __DRIextension *intelScreenExtensions[] = {
295 &driReadDrawableExtension,
296 &intelTexBufferExtension.base,
297 &intelFlushExtension.base,
298 &intelImageExtension.base,
299 &dri2ConfigQueryExtension.base,
300 NULL
301 };
302
303 static GLboolean
304 intel_get_param(__DRIscreen *psp, int param, int *value)
305 {
306 int ret;
307 struct drm_i915_getparam gp;
308
309 gp.param = param;
310 gp.value = value;
311
312 ret = drmCommandWriteRead(psp->fd, DRM_I915_GETPARAM, &gp, sizeof(gp));
313 if (ret) {
314 if (ret != -EINVAL)
315 _mesa_warning(NULL, "drm_i915_getparam: %d", ret);
316 return GL_FALSE;
317 }
318
319 return GL_TRUE;
320 }
321
322 static GLboolean
323 intel_get_boolean(__DRIscreen *psp, int param)
324 {
325 int value = 0;
326 return intel_get_param(psp, param, &value) && value;
327 }
328
329 static void
330 nop_callback(GLuint key, void *data, void *userData)
331 {
332 }
333
334 static void
335 intelDestroyScreen(__DRIscreen * sPriv)
336 {
337 struct intel_screen *intelScreen = sPriv->private;
338
339 dri_bufmgr_destroy(intelScreen->bufmgr);
340 driDestroyOptionInfo(&intelScreen->optionCache);
341
342 /* Some regions may still have references to them at this point, so
343 * flush the hash table to prevent _mesa_DeleteHashTable() from
344 * complaining about the hash not being empty; */
345 _mesa_HashDeleteAll(intelScreen->named_regions, nop_callback, NULL);
346 _mesa_DeleteHashTable(intelScreen->named_regions);
347
348 FREE(intelScreen);
349 sPriv->private = NULL;
350 }
351
352
353 /**
354 * This is called when we need to set up GL rendering to a new X window.
355 */
356 static GLboolean
357 intelCreateBuffer(__DRIscreen * driScrnPriv,
358 __DRIdrawable * driDrawPriv,
359 const struct gl_config * mesaVis, GLboolean isPixmap)
360 {
361 struct intel_renderbuffer *rb;
362
363 if (isPixmap) {
364 return GL_FALSE; /* not implemented */
365 }
366 else {
367 gl_format rgbFormat;
368
369 struct gl_framebuffer *fb = CALLOC_STRUCT(gl_framebuffer);
370
371 if (!fb)
372 return GL_FALSE;
373
374 _mesa_initialize_window_framebuffer(fb, mesaVis);
375
376 if (mesaVis->redBits == 5)
377 rgbFormat = MESA_FORMAT_RGB565;
378 else if (mesaVis->alphaBits == 0)
379 rgbFormat = MESA_FORMAT_XRGB8888;
380 else
381 rgbFormat = MESA_FORMAT_ARGB8888;
382
383 /* setup the hardware-based renderbuffers */
384 rb = intel_create_renderbuffer(rgbFormat);
385 _mesa_add_renderbuffer(fb, BUFFER_FRONT_LEFT, &rb->Base);
386
387 if (mesaVis->doubleBufferMode) {
388 rb = intel_create_renderbuffer(rgbFormat);
389 _mesa_add_renderbuffer(fb, BUFFER_BACK_LEFT, &rb->Base);
390 }
391
392 /*
393 * Assert here that the gl_config has an expected depth/stencil bit
394 * combination: one of d24/s8, d16/s0, d0/s0. (See intelInitScreen2(),
395 * which constructs the advertised configs.)
396 */
397 if (mesaVis->depthBits == 24) {
398 assert(mesaVis->stencilBits == 8);
399 /* combined depth/stencil buffer */
400 struct intel_renderbuffer *depthStencilRb
401 = intel_create_renderbuffer(MESA_FORMAT_S8_Z24);
402 /* note: bind RB to two attachment points */
403 _mesa_add_renderbuffer(fb, BUFFER_DEPTH, &depthStencilRb->Base);
404 _mesa_add_renderbuffer(fb, BUFFER_STENCIL, &depthStencilRb->Base);
405 }
406 else if (mesaVis->depthBits == 16) {
407 assert(mesaVis->stencilBits == 0);
408 /* just 16-bit depth buffer, no hw stencil */
409 struct intel_renderbuffer *depthRb
410 = intel_create_renderbuffer(MESA_FORMAT_Z16);
411 _mesa_add_renderbuffer(fb, BUFFER_DEPTH, &depthRb->Base);
412 }
413 else {
414 assert(mesaVis->depthBits == 0);
415 assert(mesaVis->stencilBits == 0);
416 }
417
418 /* now add any/all software-based renderbuffers we may need */
419 _mesa_add_soft_renderbuffers(fb,
420 GL_FALSE, /* never sw color */
421 GL_FALSE, /* never sw depth */
422 GL_FALSE, /* never sw stencil */
423 mesaVis->accumRedBits > 0,
424 GL_FALSE, /* never sw alpha */
425 GL_FALSE /* never sw aux */ );
426 driDrawPriv->driverPrivate = fb;
427
428 return GL_TRUE;
429 }
430 }
431
432 static void
433 intelDestroyBuffer(__DRIdrawable * driDrawPriv)
434 {
435 struct gl_framebuffer *fb = driDrawPriv->driverPrivate;
436
437 _mesa_reference_framebuffer(&fb, NULL);
438 }
439
440 /* There are probably better ways to do this, such as an
441 * init-designated function to register chipids and createcontext
442 * functions.
443 */
444 extern GLboolean i830CreateContext(const struct gl_config * mesaVis,
445 __DRIcontext * driContextPriv,
446 void *sharedContextPrivate);
447
448 extern GLboolean i915CreateContext(int api,
449 const struct gl_config * mesaVis,
450 __DRIcontext * driContextPriv,
451 void *sharedContextPrivate);
452 extern GLboolean brwCreateContext(int api,
453 const struct gl_config * mesaVis,
454 __DRIcontext * driContextPriv,
455 void *sharedContextPrivate);
456
457 static GLboolean
458 intelCreateContext(gl_api api,
459 const struct gl_config * mesaVis,
460 __DRIcontext * driContextPriv,
461 void *sharedContextPrivate)
462 {
463 __DRIscreen *sPriv = driContextPriv->driScreenPriv;
464 struct intel_screen *intelScreen = sPriv->private;
465
466 #ifdef I915
467 if (IS_9XX(intelScreen->deviceID)) {
468 if (!IS_965(intelScreen->deviceID)) {
469 return i915CreateContext(api, mesaVis, driContextPriv,
470 sharedContextPrivate);
471 }
472 } else {
473 intelScreen->no_vbo = GL_TRUE;
474 return i830CreateContext(mesaVis, driContextPriv, sharedContextPrivate);
475 }
476 #else
477 if (IS_965(intelScreen->deviceID))
478 return brwCreateContext(api, mesaVis,
479 driContextPriv, sharedContextPrivate);
480 #endif
481 fprintf(stderr, "Unrecognized deviceID 0x%x\n", intelScreen->deviceID);
482 return GL_FALSE;
483 }
484
485 static GLboolean
486 intel_init_bufmgr(struct intel_screen *intelScreen)
487 {
488 __DRIscreen *spriv = intelScreen->driScrnPriv;
489 int num_fences = 0;
490
491 intelScreen->no_hw = (getenv("INTEL_NO_HW") != NULL ||
492 getenv("INTEL_DEVID_OVERRIDE") != NULL);
493
494 intelScreen->bufmgr = intel_bufmgr_gem_init(spriv->fd, BATCH_SZ);
495 if (intelScreen->bufmgr == NULL) {
496 fprintf(stderr, "[%s:%u] Error initializing buffer manager.\n",
497 __func__, __LINE__);
498 return GL_FALSE;
499 }
500
501 if (!intel_get_param(spriv, I915_PARAM_NUM_FENCES_AVAIL, &num_fences) ||
502 num_fences == 0) {
503 fprintf(stderr, "[%s: %u] Kernel 2.6.29 required.\n", __func__, __LINE__);
504 return GL_FALSE;
505 }
506
507 drm_intel_bufmgr_gem_enable_fenced_relocs(intelScreen->bufmgr);
508
509 intelScreen->named_regions = _mesa_NewHashTable();
510
511 intelScreen->relaxed_relocations = 0;
512 intelScreen->relaxed_relocations |=
513 intel_get_boolean(spriv, I915_PARAM_HAS_RELAXED_DELTA) << 0;
514
515 return GL_TRUE;
516 }
517
518 /**
519 * Override intel_screen.hw_has_hiz with environment variable INTEL_HIZ.
520 *
521 * Valid values for INTEL_HIZ are "0" and "1". If an invalid valid value is
522 * encountered, a warning is emitted and INTEL_HIZ is ignored.
523 */
524 static void
525 intel_override_hiz(struct intel_screen *intel)
526 {
527 const char *s = getenv("INTEL_HIZ");
528 if (!s) {
529 return;
530 } else if (!strncmp("0", s, 2)) {
531 intel->hw_has_hiz = false;
532 } else if (!strncmp("1", s, 2)) {
533 intel->hw_has_hiz = true;
534 } else {
535 fprintf(stderr,
536 "warning: env variable INTEL_HIZ=\"%s\" has invalid value "
537 "and is ignored", s);
538 }
539 }
540
541 /**
542 * Override intel_screen.hw_has_separate_stencil with environment variable
543 * INTEL_SEPARATE_STENCIL.
544 *
545 * Valid values for INTEL_SEPARATE_STENCIL are "0" and "1". If an invalid
546 * valid value is encountered, a warning is emitted and INTEL_SEPARATE_STENCIL
547 * is ignored.
548 */
549 static void
550 intel_override_separate_stencil(struct intel_screen *screen)
551 {
552 const char *s = getenv("INTEL_SEPARATE_STENCIL");
553 if (!s) {
554 return;
555 } else if (!strncmp("0", s, 2)) {
556 screen->hw_has_separate_stencil = false;
557 } else if (!strncmp("1", s, 2)) {
558 screen->hw_has_separate_stencil = true;
559 } else {
560 fprintf(stderr,
561 "warning: env variable INTEL_SEPARATE_STENCIL=\"%s\" has "
562 "invalid value and is ignored", s);
563 }
564 }
565
566 /**
567 * This is the driver specific part of the createNewScreen entry point.
568 * Called when using DRI2.
569 *
570 * \return the struct gl_config supported by this driver
571 */
572 static const
573 __DRIconfig **intelInitScreen2(__DRIscreen *psp)
574 {
575 struct intel_screen *intelScreen;
576 GLenum fb_format[3];
577 GLenum fb_type[3];
578 unsigned int api_mask;
579 char *devid_override;
580
581 static const GLenum back_buffer_modes[] = {
582 GLX_NONE, GLX_SWAP_UNDEFINED_OML, GLX_SWAP_COPY_OML
583 };
584 uint8_t depth_bits[4], stencil_bits[4], msaa_samples_array[1];
585 int color;
586 __DRIconfig **configs = NULL;
587
588 /* Allocate the private area */
589 intelScreen = CALLOC(sizeof *intelScreen);
590 if (!intelScreen) {
591 fprintf(stderr, "\nERROR! Allocating private area failed\n");
592 return GL_FALSE;
593 }
594 /* parse information in __driConfigOptions */
595 driParseOptionInfo(&intelScreen->optionCache,
596 __driConfigOptions, __driNConfigOptions);
597
598 intelScreen->driScrnPriv = psp;
599 psp->private = (void *) intelScreen;
600
601 /* Determine chipset ID */
602 if (!intel_get_param(psp, I915_PARAM_CHIPSET_ID,
603 &intelScreen->deviceID))
604 return GL_FALSE;
605
606 /* Allow an override of the device ID for the purpose of making the
607 * driver produce dumps for debugging of new chipset enablement.
608 * This implies INTEL_NO_HW, to avoid programming your actual GPU
609 * incorrectly.
610 */
611 devid_override = getenv("INTEL_DEVID_OVERRIDE");
612 if (devid_override) {
613 intelScreen->deviceID = strtod(devid_override, NULL);
614 }
615
616 if (IS_GEN7(intelScreen->deviceID)) {
617 intelScreen->gen = 7;
618 } else if (IS_GEN6(intelScreen->deviceID)) {
619 intelScreen->gen = 6;
620 } else if (IS_GEN5(intelScreen->deviceID)) {
621 intelScreen->gen = 5;
622 } else if (IS_965(intelScreen->deviceID)) {
623 intelScreen->gen = 4;
624 } else if (IS_9XX(intelScreen->deviceID)) {
625 intelScreen->gen = 3;
626 } else {
627 intelScreen->gen = 2;
628 }
629
630 /*
631 * FIXME: The hiz and separate stencil fields need updating once the
632 * FIXME: features are completely implemented for a given chipset.
633 */
634 intelScreen->hw_has_separate_stencil = intelScreen->gen >= 7;
635 intelScreen->hw_must_use_separate_stencil = intelScreen->gen >= 7;
636 intelScreen->hw_has_hiz = false;
637 intelScreen->dri2_has_hiz = INTEL_DRI2_HAS_HIZ_UNKNOWN;
638
639 intel_override_hiz(intelScreen);
640 intel_override_separate_stencil(intelScreen);
641
642 api_mask = (1 << __DRI_API_OPENGL);
643 #if FEATURE_ES1
644 api_mask |= (1 << __DRI_API_GLES);
645 #endif
646 #if FEATURE_ES2
647 api_mask |= (1 << __DRI_API_GLES2);
648 #endif
649
650 if (IS_9XX(intelScreen->deviceID) || IS_965(intelScreen->deviceID))
651 psp->api_mask = api_mask;
652
653 if (!intel_init_bufmgr(intelScreen))
654 return GL_FALSE;
655
656 psp->extensions = intelScreenExtensions;
657
658 msaa_samples_array[0] = 0;
659
660 fb_format[0] = GL_RGB;
661 fb_type[0] = GL_UNSIGNED_SHORT_5_6_5;
662
663 fb_format[1] = GL_BGR;
664 fb_type[1] = GL_UNSIGNED_INT_8_8_8_8_REV;
665
666 fb_format[2] = GL_BGRA;
667 fb_type[2] = GL_UNSIGNED_INT_8_8_8_8_REV;
668
669 depth_bits[0] = 0;
670 stencil_bits[0] = 0;
671
672 /* Generate a rich set of useful configs that do not include an
673 * accumulation buffer.
674 */
675 for (color = 0; color < ARRAY_SIZE(fb_format); color++) {
676 __DRIconfig **new_configs;
677 int depth_factor;
678
679 /* Starting with DRI2 protocol version 1.1 we can request a depth/stencil
680 * buffer that has a diffferent number of bits per pixel than the color
681 * buffer. This isn't yet supported here.
682 */
683 if (fb_type[color] == GL_UNSIGNED_SHORT_5_6_5) {
684 depth_bits[1] = 16;
685 stencil_bits[1] = 0;
686 } else {
687 depth_bits[1] = 24;
688 stencil_bits[1] = 8;
689 }
690
691 depth_factor = 2;
692
693 new_configs = driCreateConfigs(fb_format[color], fb_type[color],
694 depth_bits,
695 stencil_bits,
696 depth_factor,
697 back_buffer_modes,
698 ARRAY_SIZE(back_buffer_modes),
699 msaa_samples_array,
700 ARRAY_SIZE(msaa_samples_array),
701 GL_FALSE);
702 if (configs == NULL)
703 configs = new_configs;
704 else
705 configs = driConcatConfigs(configs, new_configs);
706 }
707
708 /* Generate the minimum possible set of configs that include an
709 * accumulation buffer.
710 */
711 for (color = 0; color < ARRAY_SIZE(fb_format); color++) {
712 __DRIconfig **new_configs;
713
714 if (fb_type[color] == GL_UNSIGNED_SHORT_5_6_5) {
715 depth_bits[0] = 16;
716 stencil_bits[0] = 0;
717 } else {
718 depth_bits[0] = 24;
719 stencil_bits[0] = 8;
720 }
721
722 new_configs = driCreateConfigs(fb_format[color], fb_type[color],
723 depth_bits, stencil_bits, 1,
724 back_buffer_modes + 1, 1,
725 msaa_samples_array, 1,
726 GL_TRUE);
727 if (configs == NULL)
728 configs = new_configs;
729 else
730 configs = driConcatConfigs(configs, new_configs);
731 }
732
733 if (configs == NULL) {
734 fprintf(stderr, "[%s:%u] Error creating FBConfig!\n", __func__,
735 __LINE__);
736 return NULL;
737 }
738
739 return (const __DRIconfig **)configs;
740 }
741
742 struct intel_buffer {
743 __DRIbuffer base;
744 struct intel_region *region;
745 };
746
747 static __DRIbuffer *
748 intelAllocateBuffer(__DRIscreen *screen,
749 unsigned attachment, unsigned format,
750 int width, int height)
751 {
752 struct intel_buffer *intelBuffer;
753 struct intel_screen *intelScreen = screen->private;
754 uint32_t tiling;
755
756 intelBuffer = CALLOC(sizeof *intelBuffer);
757 if (intelBuffer == NULL)
758 return NULL;
759
760 if ((attachment == __DRI_BUFFER_DEPTH ||
761 attachment == __DRI_BUFFER_STENCIL ||
762 attachment == __DRI_BUFFER_DEPTH_STENCIL) &&
763 intelScreen->gen >= 4)
764 tiling = I915_TILING_Y;
765 else
766 tiling = I915_TILING_X;
767
768 intelBuffer->region = intel_region_alloc(intelScreen, tiling,
769 format / 8, width, height, GL_TRUE);
770
771 if (intelBuffer->region == NULL) {
772 FREE(intelBuffer);
773 return NULL;
774 }
775
776 intel_region_flink(intelBuffer->region, &intelBuffer->base.name);
777
778 intelBuffer->base.attachment = attachment;
779 intelBuffer->base.cpp = intelBuffer->region->cpp;
780 intelBuffer->base.pitch =
781 intelBuffer->region->pitch * intelBuffer->region->cpp;
782
783 return &intelBuffer->base;
784 }
785
786 static void
787 intelReleaseBuffer(__DRIscreen *screen, __DRIbuffer *buffer)
788 {
789 struct intel_buffer *intelBuffer = (struct intel_buffer *) buffer;
790
791 intel_region_release(&intelBuffer->region);
792 free(intelBuffer);
793 }
794
795
796 const struct __DriverAPIRec driDriverAPI = {
797 .DestroyScreen = intelDestroyScreen,
798 .CreateContext = intelCreateContext,
799 .DestroyContext = intelDestroyContext,
800 .CreateBuffer = intelCreateBuffer,
801 .DestroyBuffer = intelDestroyBuffer,
802 .MakeCurrent = intelMakeCurrent,
803 .UnbindContext = intelUnbindContext,
804 .InitScreen2 = intelInitScreen2,
805 .AllocateBuffer = intelAllocateBuffer,
806 .ReleaseBuffer = intelReleaseBuffer
807 };
808
809 /* This is the table of extensions that the loader will dlsym() for. */
810 PUBLIC const __DRIextension *__driDriverExtensions[] = {
811 &driCoreExtension.base,
812 &driDRI2Extension.base,
813 NULL
814 };