r600g: make r600_db_format static.
[mesa.git] / src / gallium / drivers / r600 / r600_screen.h
1 /*
2 * Copyright 2010 Jerome Glisse <glisse@freedesktop.org>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23 #ifndef R600_SCREEN_H
24 #define R600_SCREEN_H
25
26 #include <pipe/p_state.h>
27 #include <pipe/p_screen.h>
28 #include <pipebuffer/pb_buffer.h>
29 #include <xf86drm.h>
30 #include <radeon_drm.h>
31 #include "radeon.h"
32 #include "util/u_transfer.h"
33
34 /* Texture transfer. */
35 struct r600_transfer {
36 /* Base class. */
37 struct pipe_transfer transfer;
38 /* Buffer transfer. */
39 struct pipe_transfer *buffer_transfer;
40 unsigned offset;
41 };
42
43 struct r600_screen {
44 struct pipe_screen screen;
45 struct radeon *rw;
46 };
47
48 static INLINE struct r600_screen *r600_screen(struct pipe_screen *screen)
49 {
50 return (struct r600_screen*)screen;
51 }
52
53 /* Buffer functions. */
54 struct pipe_resource *r600_buffer_create(struct pipe_screen *screen,
55 const struct pipe_resource *templ);
56 struct pipe_resource *r600_user_buffer_create(struct pipe_screen *screen,
57 void *ptr, unsigned bytes,
58 unsigned bind);
59 unsigned r600_buffer_is_referenced_by_cs(struct pipe_context *context,
60 struct pipe_resource *buf,
61 unsigned face, unsigned level);
62 struct pipe_resource *r600_buffer_from_handle(struct pipe_screen *screen,
63 struct winsys_handle *whandle);
64
65 /* Texture transfer functions. */
66 struct pipe_transfer* r600_texture_get_transfer(struct pipe_context *ctx,
67 struct pipe_resource *texture,
68 struct pipe_subresource sr,
69 unsigned usage,
70 const struct pipe_box *box);
71 void r600_texture_transfer_destroy(struct pipe_context *ctx,
72 struct pipe_transfer *trans);
73 void* r600_texture_transfer_map(struct pipe_context *ctx,
74 struct pipe_transfer* transfer);
75 void r600_texture_transfer_unmap(struct pipe_context *ctx,
76 struct pipe_transfer* transfer);
77
78
79 /* helpers */
80 int r600_conv_pipe_format(unsigned pformat, unsigned *format);
81 int r600_conv_pipe_prim(unsigned pprim, unsigned *prim);
82
83 #endif