nouveau_driver.h revision bfb5dc68fcc9f5dee71f66d9499b8bdcde9627ea
1/*
2 * Copyright (C) 2009 Francisco Jerez.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 *
25 */
26
27#ifndef __NOUVEAU_DRIVER_H__
28#define __NOUVEAU_DRIVER_H__
29
30#include "main/imports.h"
31#include "main/mtypes.h"
32#include "main/macros.h"
33#include "main/formats.h"
34#include "utils.h"
35#include "dri_util.h"
36
37#undef NDEBUG
38#include <assert.h>
39
40#include "nouveau_device.h"
41#include "nouveau_pushbuf.h"
42#include "nouveau_grobj.h"
43#include "nouveau_channel.h"
44#include "nouveau_bo.h"
45#include "nouveau_notifier.h"
46#include "nouveau_screen.h"
47#include "nouveau_state.h"
48#include "nouveau_surface.h"
49
50#define DRIVER_DATE	"20091015"
51#define DRIVER_AUTHOR	"Nouveau"
52
53struct nouveau_driver {
54	void (*screen_destroy)(struct nouveau_screen *screen);
55
56	GLcontext *(*context_create)(struct nouveau_screen *screen,
57				     const GLvisual *visual,
58				     GLcontext *share_ctx);
59	void (*context_destroy)(GLcontext *ctx);
60
61	void (*surface_copy)(GLcontext *ctx,
62			     struct nouveau_surface *dst,
63			     struct nouveau_surface *src,
64			     int dx, int dy, int sx, int sy, int w, int h);
65	void (*surface_fill)(GLcontext *ctx,
66			     struct nouveau_surface *dst,
67			     unsigned mask, unsigned value,
68			     int dx, int dy, int w, int h);
69
70	nouveau_state_func *emit;
71	int num_emit;
72};
73
74#define nouveau_error(format, ...) \
75	_mesa_fprintf(stderr, "%s: " format, __func__, ## __VA_ARGS__)
76
77void
78nouveau_clear(GLcontext *ctx, GLbitfield buffers);
79
80void
81nouveau_span_functions_init(GLcontext *ctx);
82
83void
84nouveau_driver_functions_init(struct dd_function_table *functions);
85
86void
87nouveau_texture_functions_init(struct dd_function_table *functions);
88
89#endif
90