r600g: flush and resubmit if we reach limit
authorJerome Glisse <jglisse@redhat.com>
Tue, 3 Aug 2010 21:02:48 +0000 (17:02 -0400)
committerJerome Glisse <jglisse@redhat.com>
Tue, 3 Aug 2010 21:02:48 +0000 (17:02 -0400)
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
src/gallium/drivers/r600/r600_context.c
src/gallium/drivers/r600/r600_context.h
src/gallium/drivers/r600/r600_draw.c
src/gallium/drivers/r600/r600_helper.c

index 8b191914f5f88dbf1a33e600fa64c0753c05f402..ae1780a1d4013a9d9978cd003acd95ebe5bf5b65 100644 (file)
@@ -41,7 +41,7 @@ static void r600_destroy_context(struct pipe_context *context)
        FREE(rctx);
 }
 
-static void r600_flush(struct pipe_context *ctx, unsigned flags,
+void r600_flush(struct pipe_context *ctx, unsigned flags,
                        struct pipe_fence_handle **fence)
 {
        struct r600_context *rctx = r600_context(ctx);
index f8fdce50dc4bcc73e65774c51fa96efb43074ebb..8d102b685081a49bda4b5860eebcf7aa3c8d6625 100644 (file)
@@ -113,23 +113,6 @@ struct r600_context {
        struct radeon_draw              *draw;
        /* hw states */
        struct r600_context_hw_states   hw_states;
-#if 0
-       struct r600_pipe_shader         *ps_shader;
-       struct r600_pipe_shader         *vs_shader;
-       unsigned                        nps_sampler;
-       struct radeon_state             *ps_sampler[PIPE_MAX_ATTRIBS];
-       unsigned                        nps_view;
-       unsigned                        nvs_view;
-       struct r600_texture_resource    *ps_view[PIPE_MAX_ATTRIBS];
-       struct r600_texture_resource    *vs_view[PIPE_MAX_ATTRIBS];
-       unsigned                        flat_shade;
-       unsigned                        nvertex_buffer;
-       struct r600_vertex_elements_state *vertex_elements;
-       struct pipe_vertex_buffer       vertex_buffer[PIPE_MAX_ATTRIBS];
-       struct pipe_stencil_ref         stencil_ref;
-       struct pipe_framebuffer_state   fb_state;
-       struct pipe_viewport_state      viewport;
-#endif
        /* pipe states */
        unsigned                        flat_shade;
        unsigned                        ps_nsampler;
@@ -161,25 +144,6 @@ struct r600_context {
        struct pipe_blend_color         blend_color;
 };
 
-#if 0
-struct r600_vertex_elements_state
-{
-       unsigned count;
-       struct pipe_vertex_element      elements[32];
-};
-
-struct r600_pipe_shader {
-       struct r600_shader              shader;
-       struct radeon_bo                *bo;
-       struct radeon_state             *state;
-};
-
-struct r600_texture_resource {
-       struct pipe_sampler_view        view;
-       struct radeon_state             *state;
-};
-#endif
-
 /* Convenience cast wrapper. */
 static INLINE struct r600_context *r600_context(struct pipe_context *pipe)
 {
@@ -189,6 +153,8 @@ static INLINE struct r600_context *r600_context(struct pipe_context *pipe)
 struct r600_context_state *r600_context_state(struct r600_context *rctx, unsigned type, const void *state);
 struct r600_context_state *r600_context_state_incref(struct r600_context_state *rstate);
 struct r600_context_state *r600_context_state_decref(struct r600_context_state *rstate);
+void r600_flush(struct pipe_context *ctx, unsigned flags,
+                       struct pipe_fence_handle **fence);
 
 int r600_context_hw_states(struct r600_context *rctx);
 
index c52dfd3fb3fc5ccaf233be4738625766b0935e1e..43c805b9823011780c6eaf14ae2b6d4e44c5cb78 100644 (file)
@@ -170,6 +170,10 @@ static int r600_draw_common(struct r600_draw *draw)
                return r;
        /* FIXME */
        r = radeon_ctx_set_draw_new(rctx->ctx, rctx->draw);
+       if (r == -EBUSY) {
+               r600_flush(draw->ctx, 0, NULL);
+               r = radeon_ctx_set_draw_new(rctx->ctx, rctx->draw);
+       }
        if (r)
                return r;
        rctx->draw = radeon_draw_duplicate(rctx->draw);
index 132abf90a382d50c516399186c3bf101a02035b0..c672fe7386dbbe6636cd59e0c95966e5d5d9d8ea 100644 (file)
@@ -61,6 +61,12 @@ int r600_conv_pipe_format(unsigned pformat, unsigned *format)
        case PIPE_FORMAT_I8_UNORM:
                *format = V_0280A0_COLOR_8;
                return 0;
+       case PIPE_FORMAT_B4G4R4A4_UNORM:
+               *format = V_0280A0_COLOR_4_4_4_4;
+               return 0;
+       case PIPE_FORMAT_B5G6R5_UNORM:
+               *format = V_0280A0_COLOR_5_6_5;
+               return 0;
        case PIPE_FORMAT_L16_UNORM:
        case PIPE_FORMAT_Z16_UNORM:
        case PIPE_FORMAT_Z32_UNORM: