Merge branch 'mesa_7_7_branch'
[mesa.git] / src / mesa / drivers / dri / radeon / radeon_common.h
1 #ifndef COMMON_MISC_H
2 #define COMMON_MISC_H
3
4 #include "radeon_common_context.h"
5 #include "radeon_dma.h"
6 #include "radeon_texture.h"
7
8 void radeonUserClear(GLcontext *ctx, GLuint mask);
9 void radeonRecalcScissorRects(radeonContextPtr radeon);
10 void radeonSetCliprects(radeonContextPtr radeon);
11 void radeonUpdateScissor( GLcontext *ctx );
12 void radeonScissor(GLcontext* ctx, GLint x, GLint y, GLsizei w, GLsizei h);
13
14 void radeonWaitForIdleLocked(radeonContextPtr radeon);
15 extern uint32_t radeonGetAge(radeonContextPtr radeon);
16 void radeonCopyBuffer( __DRIdrawable *dPriv,
17 const drm_clip_rect_t *rect);
18 void radeonSwapBuffers(__DRIdrawable * dPriv);
19 void radeonCopySubBuffer(__DRIdrawable * dPriv,
20 int x, int y, int w, int h );
21
22 void radeonUpdatePageFlipping(radeonContextPtr rmesa);
23
24 void radeonFlush(GLcontext *ctx);
25 void radeonFinish(GLcontext * ctx);
26 void radeonEmitState(radeonContextPtr radeon);
27 GLuint radeonCountStateEmitSize(radeonContextPtr radeon);
28
29 void radeon_clear_tris(GLcontext *ctx, GLbitfield mask);
30
31 void radeon_window_moved(radeonContextPtr radeon);
32 void radeon_draw_buffer(GLcontext *ctx, struct gl_framebuffer *fb);
33 void radeonDrawBuffer( GLcontext *ctx, GLenum mode );
34 void radeonReadBuffer( GLcontext *ctx, GLenum mode );
35 void radeon_viewport(GLcontext *ctx, GLint x, GLint y, GLsizei width, GLsizei height);
36 void radeon_get_cliprects(radeonContextPtr radeon,
37 struct drm_clip_rect **cliprects,
38 unsigned int *num_cliprects,
39 int *x_off, int *y_off);
40 void radeon_fbo_init(struct radeon_context *radeon);
41 void
42 radeon_renderbuffer_set_bo(struct radeon_renderbuffer *rb,
43 struct radeon_bo *bo);
44 struct radeon_renderbuffer *
45 radeon_create_renderbuffer(gl_format format, __DRIdrawable *driDrawPriv);
46
47 void radeon_check_front_buffer_rendering(GLcontext *ctx);
48 static inline struct radeon_renderbuffer *radeon_renderbuffer(struct gl_renderbuffer *rb)
49 {
50 struct radeon_renderbuffer *rrb = (struct radeon_renderbuffer *)rb;
51 if (rrb && rrb->base.ClassID == RADEON_RB_CLASS)
52 return rrb;
53 else
54 return NULL;
55 }
56
57 static inline struct radeon_renderbuffer *radeon_get_renderbuffer(struct gl_framebuffer *fb, int att_index)
58 {
59 if (att_index >= 0)
60 return radeon_renderbuffer(fb->Attachment[att_index].Renderbuffer);
61 else
62 return NULL;
63 }
64
65 static inline struct radeon_renderbuffer *radeon_get_depthbuffer(radeonContextPtr rmesa)
66 {
67 struct radeon_renderbuffer *rrb;
68 rrb = radeon_renderbuffer(rmesa->state.depth.rb);
69 if (!rrb)
70 return NULL;
71
72 return rrb;
73 }
74
75 static inline struct radeon_renderbuffer *radeon_get_colorbuffer(radeonContextPtr rmesa)
76 {
77 struct radeon_renderbuffer *rrb;
78
79 rrb = radeon_renderbuffer(rmesa->state.color.rb);
80 if (!rrb)
81 return NULL;
82 return rrb;
83 }
84
85 #include "radeon_cmdbuf.h"
86
87
88 #endif