index
:
mesa.git
gallium_va_encpackedheader01
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
mapi
/
glapi
/
gen
/
gl_marshal.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
mapi: Fix a couple of warning in generated code
Kristian H. Kristensen
2020-05-26
1
-2
/
+2
*
glthread: stop using GLenum16 to get correct GL errors for out-of-bounds enums
Marek Olšák
2020-05-13
1
-5
/
+2
*
mesa: add glInternalBufferSubDataCopyMESA for glthread
Marek Olšák
2020-04-30
1
-0
/
+1
*
glthread: sort variables in marshal structures to pack them optimally
Marek Olšák
2020-04-27
1
-1
/
+39
*
glthread: use GLenum16 in batch buffers to save space
Marek Olšák
2020-04-27
1
-1
/
+4
*
glthread: compile marshal_generated.c faster by breaking it up into 8 files
Marek Olšák
2020-03-24
1
-5
/
+21
*
glthread: declare marshal and unmarshal functions as non-static
Marek Olšák
2020-03-24
1
-3
/
+3
*
glthread: inline SET_func and add -O1 to build _mesa_create_marshal_table faster
Marek Olšák
2020-03-24
1
-1
/
+9
*
glthread: remove the marshal_fail XML attribute
Marek Olšák
2020-03-20
1
-8
/
+0
*
glthread: rename marshal.h/c to glthread_marshal.h and glthread_shaderobj.c
Marek Olšák
2020-03-20
1
-3
/
+1
*
glthread: simplify printing safe_mul in gl_marshal.py
Marek Olšák
2020-03-20
1
-8
/
+8
*
glthread: don't declare unmarshal functions as inline
Marek Olšák
2020-03-20
1
-1
/
+1
*
glthread: remove debug_print_marshal function
Marek Olšák
2020-03-20
1
-2
/
+0
*
glthread: don't execute any custom VAO and BindBuffer code in the Core profile
Marek Olšák
2020-03-20
1
-0
/
+2
*
glthread: fall back if a param size is non-zero and a pointer param is NULL
Marek Olšák
2020-03-06
1
-0
/
+1
*
glthread: sync instead of disabling glthread for non-VBO pointers
Marek Olšák
2020-03-06
1
-0
/
+8
*
glthread: add marshal_call_after and remove custom glFlush and glEnable code
Marek Olšák
2020-03-06
1
-2
/
+8
*
glthread: don't insert an empty line after (void) cmd;
Marek Olšák
2020-03-06
1
-1
/
+1
*
glthread: add support for TexParameteri and SamplerParameteri functions
Marek Olšák
2020-03-06
1
-5
/
+5
*
glthread: check the size of all variable params and clean up the code
Marek Olšák
2020-03-06
1
-25
/
+16
*
glthread: handle complex pointer parameters and support GL functions with str...
Marek Olšák
2020-03-06
1
-12
/
+11
*
glthread: don't increment variable_data if it's the last variable-size param
Marek Olšák
2020-03-06
1
-8
/
+15
*
glthread: don't insert _mesa_post_marshal_hook into every function
Marek Olšák
2020-03-06
1
-1
/
+3
*
glthread: simplify repeated function sequences in marshal_generated.c
Marek Olšák
2020-03-06
1
-6
/
+3
*
glthread: use int instead of size_t where it's OK
Marek Olšák
2020-03-06
1
-1
/
+1
*
glthread: inline _mesa_unmarshal_dispatch_cmd and convert the switch to a table
Marek Olšák
2020-03-06
1
-21
/
+3
*
glthread: don't prefix variable_data with const
Marek Olšák
2020-03-06
1
-2
/
+2
*
glthread: don't generate the sync fallback if the call size is not variable
Marek Olšák
2020-03-06
1
-11
/
+15
*
mesa/glthread: pass the function name to _mesa_glthread_restore_dispatch
Marek Olšák
2018-11-20
1
-1
/
+1
*
python: Stop using the Python 2 exception syntax
Mathieu Bridon
2018-07-06
1
-1
/
+1
*
python: Use the print function
Mathieu Bridon
2018-07-06
1
-12
/
+14
*
mapi/gen: remove shebang from the marshal generator scripts
Emil Velikov
2017-08-26
1
-1
/
+0
*
glapi: Fix -Wduplicate-decl-specifier due to double-const
Chad Versace
2017-06-26
1
-4
/
+12
*
mesa/glthread: remove HAVE_PTHREAD guards
Marek Olšák
2017-06-26
1
-4
/
+1
*
glthread: remove extra _mesa_glthread_finish() from generated code
Timothy Arceri
2017-06-07
1
-1
/
+1
*
mesa/glthread: fallback to sync if count validation fails
Timothy Arceri
2017-03-30
1
-8
/
+14
*
mesa/glthread: print out syncs when MARSHAL_MAX_CMD_SIZE is exceeded
Timothy Arceri
2017-03-30
1
-0
/
+1
*
mapi: remove Xlib/xcb include in gl_marshal.py
Emil Velikov
2017-03-16
1
-3
/
+1
*
mapi: don't include X11/Xlib-xcb.h on non PTHREAD platforms
Timothy Arceri
2017-03-16
1
-2
/
+2
*
mesa: fix glthread marshal build issues on platforms without PTHREAD
Timothy Arceri
2017-03-16
1
-1
/
+4
*
mesa/glthread: restore the dispatch table when incompatible gl calls are dete...
Gregory Hainaut
2017-03-16
1
-1
/
+2
*
mesa: Track the current vertex/element array buffers for glthread.
Eric Anholt
2017-03-16
1
-4
/
+0
*
mesa: Add an attribute for conditions to turn off threading.
Eric Anholt
2017-03-16
1
-0
/
+8
*
mesa: Add support for asynchronous glDraw* on GL core.
Eric Anholt
2017-03-16
1
-0
/
+4
*
mesa: Add support for NULL arguments like in glBufferData() in marshalling.
Eric Anholt
2017-03-16
1
-4
/
+34
*
mesa: Validate count parameters when marshalling.
Eric Anholt
2017-03-16
1
-0
/
+15
*
glapi: Generate GL API marshalling code from the XML.
Paul Berry
2017-03-16
1
-0
/
+298