X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fmesa%2Fmain%2Fmarshal.h;h=63e0295576ef04fde2b5f44704873492404a9cbe;hb=d9e26c3483396cc2ab5f9b9bdaf347969a5205d1;hp=2f1509b2d55f6b300f013171a0651f4172d81d2f;hpb=dbdd7231c252cbed52a196c86725730c07cd8006;p=mesa.git diff --git a/src/mesa/main/marshal.h b/src/mesa/main/marshal.h index 2f1509b2d55..63e0295576e 100644 --- a/src/mesa/main/marshal.h +++ b/src/mesa/main/marshal.h @@ -32,6 +32,7 @@ #include "main/glthread.h" #include "main/context.h" +#include "main/macros.h" struct marshal_cmd_base { @@ -46,24 +47,25 @@ struct marshal_cmd_base uint16_t cmd_size; }; -#ifdef HAVE_PTHREAD - static inline void * _mesa_glthread_allocate_command(struct gl_context *ctx, uint16_t cmd_id, size_t size) { struct glthread_state *glthread = ctx->GLThread; + struct glthread_batch *next = &glthread->batches[glthread->next]; struct marshal_cmd_base *cmd_base; + const size_t aligned_size = ALIGN(size, 8); - if (unlikely(glthread->batch->used + size > MARSHAL_MAX_CMD_SIZE)) + if (unlikely(next->used + size > MARSHAL_MAX_CMD_SIZE)) { _mesa_glthread_flush_batch(ctx); + next = &glthread->batches[glthread->next]; + } - cmd_base = (struct marshal_cmd_base *) - &glthread->batch->buffer[glthread->batch->used]; - glthread->batch->used += size; + cmd_base = (struct marshal_cmd_base *)&next->buffer[next->used]; + next->used += aligned_size; cmd_base->cmd_id = cmd_id; - cmd_base->cmd_size = size; + cmd_base->cmd_size = aligned_size; return cmd_base; } @@ -92,31 +94,6 @@ _mesa_glthread_is_non_vbo_draw_elements(const struct gl_context *ctx) return ctx->API != API_OPENGL_CORE && !glthread->element_array_is_vbo; } -#else - -/* FIXME: dummy functions for non PTHREAD platforms */ -static inline void * -_mesa_glthread_allocate_command(struct gl_context *ctx, - uint16_t cmd_id, - size_t size) -{ - return NULL; -} - -static inline bool -_mesa_glthread_is_non_vbo_vertex_attrib_pointer(const struct gl_context *ctx) -{ - return false; -} - -static inline bool -_mesa_glthread_is_non_vbo_draw_elements(const struct gl_context *ctx) -{ - return false; -} - -#endif - #define DEBUG_MARSHAL_PRINT_CALLS 0 /** @@ -203,7 +180,13 @@ struct marshal_cmd_Flush; struct marshal_cmd_BindBuffer; struct marshal_cmd_BufferData; struct marshal_cmd_BufferSubData; -struct marshal_cmd_ClearBufferfv; +struct marshal_cmd_NamedBufferData; +struct marshal_cmd_NamedBufferSubData; +struct marshal_cmd_ClearBuffer; +#define marshal_cmd_ClearBufferfv marshal_cmd_ClearBuffer +#define marshal_cmd_ClearBufferiv marshal_cmd_ClearBuffer +#define marshal_cmd_ClearBufferuiv marshal_cmd_ClearBuffer +#define marshal_cmd_ClearBufferfi marshal_cmd_ClearBuffer void _mesa_unmarshal_Enable(struct gl_context *ctx, @@ -250,12 +233,52 @@ void GLAPIENTRY _mesa_marshal_BufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid * data); +void +_mesa_unmarshal_NamedBufferData(struct gl_context *ctx, + const struct marshal_cmd_NamedBufferData *cmd); + +void GLAPIENTRY +_mesa_marshal_NamedBufferData(GLuint buffer, GLsizeiptr size, + const GLvoid * data, GLenum usage); + +void +_mesa_unmarshal_NamedBufferSubData(struct gl_context *ctx, + const struct marshal_cmd_NamedBufferSubData *cmd); + +void GLAPIENTRY +_mesa_marshal_NamedBufferSubData(GLuint buffer, GLintptr offset, GLsizeiptr size, + const GLvoid * data); + void _mesa_unmarshal_ClearBufferfv(struct gl_context *ctx, - const struct marshal_cmd_ClearBufferfv *cmd); + const struct marshal_cmd_ClearBuffer *cmd); void GLAPIENTRY _mesa_marshal_ClearBufferfv(GLenum buffer, GLint drawbuffer, const GLfloat *value); +void +_mesa_unmarshal_ClearBufferiv(struct gl_context *ctx, + const struct marshal_cmd_ClearBuffer *cmd); + +void GLAPIENTRY +_mesa_marshal_ClearBufferiv(GLenum buffer, GLint drawbuffer, + const GLint *value); + +void +_mesa_unmarshal_ClearBufferuiv(struct gl_context *ctx, + const struct marshal_cmd_ClearBuffer *cmd); + +void GLAPIENTRY +_mesa_marshal_ClearBufferuiv(GLenum buffer, GLint drawbuffer, + const GLuint *value); + +void +_mesa_unmarshal_ClearBufferfi(struct gl_context *ctx, + const struct marshal_cmd_ClearBuffer *cmd); + +void GLAPIENTRY +_mesa_marshal_ClearBufferfi(GLenum buffer, GLint drawbuffer, + const GLfloat depth, const GLint stencil); + #endif /* MARSHAL_H */