nouveau_driver.h revision 5c102dd94f435e97507213fbd128e50dd15f5f54
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_grobj.h"
42#include "nouveau_channel.h"
43#include "nouveau_bo.h"
44#include "nouveau_notifier.h"
45#include "nouveau_screen.h"
46#include "nouveau_state.h"
47#include "nouveau_surface.h"
48#include "nv04_pushbuf.h"
49
50#define DRIVER_DATE	"20091015"
51#define DRIVER_AUTHOR	"Nouveau"
52
53struct nouveau_driver {
54	struct gl_context *(*context_create)(struct nouveau_screen *screen,
55				     const struct gl_config *visual,
56				     struct gl_context *share_ctx);
57	void (*context_destroy)(struct gl_context *ctx);
58
59	void (*surface_copy)(struct gl_context *ctx,
60			     struct nouveau_surface *dst,
61			     struct nouveau_surface *src,
62			     int dx, int dy, int sx, int sy, int w, int h);
63	void (*surface_fill)(struct gl_context *ctx,
64			     struct nouveau_surface *dst,
65			     unsigned mask, unsigned value,
66			     int dx, int dy, int w, int h);
67
68	nouveau_state_func *emit;
69	int num_emit;
70};
71
72#define nouveau_error(format, ...) \
73	fprintf(stderr, "%s: " format, __func__, ## __VA_ARGS__)
74
75void
76nouveau_clear(struct gl_context *ctx, GLbitfield buffers);
77
78void
79nouveau_span_functions_init(struct gl_context *ctx);
80
81void
82nouveau_driver_functions_init(struct dd_function_table *functions);
83
84void
85nouveau_texture_functions_init(struct dd_function_table *functions);
86
87#endif
88