Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-04-27 | mesa: Move get_es*.c to main/ | Kristian Høgsberg | |
2010-04-27 | es: Prefix the get* functions with _es1/2 so they don't conflict | Kristian Høgsberg | |
2010-04-27 | mesa: Move GL_RGB565 workaround into fbobject.c | Kristian Høgsberg | |
2010-04-27 | mesa: Move GLES1/2 vbo entrypoints to vbo_exec_api.c | Kristian Høgsberg | |
This let's us drop stubs.c. | |||
2010-04-27 | mesa: Move GLES2 shader stubs to main/shaders.c | Kristian Høgsberg | |
2010-04-27 | mesa: Move api_exec_es*.c into mesa/main | Kristian Høgsberg | |
This requires renaming a few functions to have unique names so that they can all live within the same driver. | |||
2010-04-27 | mesa: Move references to main/remap_helper.h to api_exec.c | Kristian Høgsberg | |
2010-04-22 | mesa: Move struct _glapi_table allocation out of context.c | Kristian Høgsberg | |
We now allocate the table from api_exec.c and dlist.c where we fill out the table. This way, context.c doesn't need to know the actual contents of struct _glapi_table. | |||
2010-04-22 | mesa: Compute extension string according to API | Kristian Høgsberg | |
We can now stop special casing glGetString() and drop specials_es*.c. | |||
2010-04-22 | es2: Move over es2 code to compute extensions | Kristian Høgsberg | |
2010-04-22 | main: Report GL_SHADING_LANGUAGE_VERSION according to API | Kristian Høgsberg | |
2010-04-22 | mesa: Compute GL version according to API | Kristian Høgsberg | |
2010-04-22 | mesa: Move API specific context intialization into context.c | Kristian Høgsberg | |
2010-04-22 | st/mesa: Use API-aware context constructor | Kristian Høgsberg | |
The mesa state tracker is currently the only place where we create a context and expect it to implement GLES1/2. Use the API-aware constructor to communicate this to core mesa. | |||
2010-04-22 | mesa: Track the OpenGL API we're implementing in the context | Kristian Høgsberg | |
This introduces a new way to create or initialize a context: _mesa_create_context_for_api and _mesa_initialize_context_for_api which in addition to the current arguments take an api enum to indicate which OpenGL API the context should implement. At this point the API field in GLcontext isn't used anywhere, but later commits will key certain functionality off of it. The _mesa_create_context and _mesa_initialize_context functions are kept in place as wrappers around the *_for_api versions, passing in API_OPENGL to get the same behavior as before. | |||
2010-04-22 | gallivm: Remove unused variable. | Vinson Lee | |
2010-04-22 | r300g: fix vertex unit setup | Alex Deucher | |
RV3xx is 2, RV560,RV570 is 8 Noticed by Tormod Volden. | |||
2010-04-21 | gallium/util: Fix deviation calculation in u_cache. | Vinson Lee | |
The approximate deviation calculation was using the entire cache's total instead of each cache entry's total. | |||
2010-04-21 | gallium/tests: Add test case for u_cache. | Vinson Lee | |
2010-04-21 | gallivm: added some assertions in loop-gen code | Brian Paul | |
We're hitting these assertions with nested loops... | |||
2010-04-21 | gallivm: fix copy&paste error: s/cont_stack_size/break_stack_size/ | Brian Paul | |
2010-04-21 | gallivm: emit_instruction() is boolean | Brian Paul | |
2010-04-21 | progs/glsl: better comments | Brian Paul | |
2010-04-21 | llvmpipe: add missing dependency in Makefile | Brian Paul | |
2010-04-21 | gallivm: implement TGSI KILP | Brian Paul | |
As in tgsi_exec.c we don't actually rely on condition codes; we do an unconditional kill. The only predication comes from the execution mask which applies inside loops/conditionals. | |||
2010-04-21 | draw: Make LLVM integration work without llvmpipe too (e.g. sofptipe). | José Fonseca | |
Prevents the assertion failure. | |||
2010-04-21 | radeon: fix warning | Marek Olšák | |
2010-04-21 | r300g: raise the max index for generic varyings to 32 | Marek Olšák | |
This should fix an assertion failure in the game Heroes of Newearth. Yes, the game seems to generate semantic indices greater than 15. | |||
2010-04-21 | softpipe: call draw_wide_point_sprites() | Brian Paul | |
2010-04-21 | gallium/draw: fix point sprite handling | Brian Paul | |
New draw API function to indicate whether or not to convert points to quads for sprite rasterization. Fix point-to-quad conversion regression in the wide-point stage. We need to check the pipe_rasterizer_state::point_quad_rasterization flag. | |||
2010-04-21 | gallium/draw: use local var to simplify code | Brian Paul | |
2010-04-21 | llvmpipe: consolidate texture memory allocation code | Brian Paul | |
And fix incorrect allocation of linear memory for display targets. This fixes fd.o bugs 27761 and 27762. | |||
2010-04-21 | st/glx: variable 'i' is an enum | Brian Paul | |
Now we can get see 'i' as an enum name instead of a plain integer in gdb. | |||
2010-04-21 | targets: Don't check if we should use trace | Jakob Bornecrantz | |
Trace does its own checking, and it used the GALLIUM_TRACE variable as well, but expected a file and not a bool argument. | |||
2010-04-21 | mesa/st: Translate a few more mesa/gallium formats. | José Fonseca | |
These endup used by Xvnc. | |||
2010-04-20 | llvmpipe: Remove unused variable. | Vinson Lee | |
2010-04-20 | mesa: do version checking for GL 3.x queries | Brian Paul | |
2010-04-20 | mesa: API and state for GL 3.1 primitive restart | Brian Paul | |
2010-04-20 | mesa: add GL 3.2 GL_CONTEXT_PROFILE_MASK query | Brian Paul | |
2010-04-20 | mesa: remove some comments | Brian Paul | |
2010-04-21 | intel: Add Sandybridge mobile chipset id | Zhenyu Wang | |
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com> | |||
2010-04-21 | intel: Clean up chipset name and gen num for Ironlake | Zhenyu Wang | |
Rename old IGDNG to Ironlake, and set 'gen' number for Ironlake as 5, so tracking the features with generation num instead of special is_ironlake flag. Reviewed-by: Eric Anholt <eric@anholt.net> Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com> | |||
2010-04-20 | gallivm: Remove unnecessary headers. | Vinson Lee | |
2010-04-20 | i965g: s/inttypes.h/stdint.h/ | Vinson Lee | |
MSVC doesn't have either but Mesa has stdint.h at include/c99. | |||
2010-04-20 | i965g: Remove unnecessary header. | Vinson Lee | |
2010-04-20 | llvmpipe: Change return type of declaration to match code. | Vinson Lee | |
Commit 2142108e0e1cf1ed8d0142e9c41fe1947abe0907 changed the return type of llvmpipe_get_texture_image_address function but didn't change the declaration. Fixes build. | |||
2010-04-20 | llvmpipe: code consolidation | Brian Paul | |
2010-04-20 | llvmpipe: remove debug code and simplify | Brian Paul | |
2010-04-20 | llvmpipe: fix cube face addressing bug | Brian Paul | |
Fixes fd.o bug 27760 (pigit fbo-cubemap). | |||
2010-04-20 | llvmpipe: whitespace fix | Brian Paul | |