Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-05-31 | r300g: set correct pitch in libdrm | Marek Olšák | |
to match what DDX sets. This prevents some flushes from occuring. | |||
2010-05-31 | r300g: remove texture usage transfer flag | Marek Olšák | |
2010-05-31 | r600g: remove unused struct r600_state | Marek Olšák | |
What was the purpose of it? | |||
2010-05-30 | r600g: Remove unnecessary headers. | Vinson Lee | |
2010-05-30 | llvmpipe: Remove unused framebuffer stuff from the rasterizer. | José Fonseca | |
2010-05-30 | llvmpipe: Don't force a linear to tiled conversion after rasterization on ↵ | José Fonseca | |
debug builds. Only do this if runtime debugging flags to show subtiles/tiles are set. | |||
2010-05-30 | llvmpipe: Call llvmpipe_set_texture_tile_layout only when necessary. | José Fonseca | |
Like the other places. | |||
2010-05-30 | llvmpipe: Use pointer_to_func() instead of custom wrappers. | José Fonseca | |
2010-05-30 | llvmpipe: Pass the fs variant to the rasterizer. | José Fonseca | |
2010-05-29 | r600g: fix gallium function parameters | Marek Olšák | |
2010-05-29 | r600g: make a local copy of viewport state | Marek Olšák | |
2010-05-29 | i915g: Move pci id to winsys struct | Jakob Bornecrantz | |
2010-05-28 | llvmpipe: add PIPE_BUFFER to assertion | Brian Paul | |
Fixes regression from commit f2e05acac931889e0820e1cc5d7ea810048a6b5f. | |||
2010-05-28 | softpipe: add PIPE_BUFFER to assertion | Brian Paul | |
Fixes regression from commit f2e05acac931889e0820e1cc5d7ea810048a6b5f. | |||
2010-05-28 | llvmpipe: add out of memory checking to triangle setup path | Brian Paul | |
2010-05-28 | r300g: remove unnecessary breaks | Marek Olšák | |
2010-05-28 | r300g: report vertex format support in is_format_supported | Marek Olšák | |
2010-05-28 | r300g/swtcl: fix WPOS | Marek Olšák | |
There you are! r300->viewport_state is undefined when using SW TCL. Piglit score (r300g.tests): HW TCL: 231/275 SW TCL: 233/275 | |||
2010-05-28 | r300g/swtcl: avoid an infinite loop if an occl. query doesn't return anything | Marek Olšák | |
2010-05-27 | r600g: disable rendering | Jerome Glisse | |
Disable rendering to avoid GPU lockup. Use radeondb to debug shader compiler : radeondb -c gallium.bof radeondb -s gallium.json Will print shader generated, best is to use fp demos to test the compiler. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-05-27 | r600g: various fixes | Bas Nieuwenhuizen | |
- enabled flushing a buffer more than once - enabled the blitter for r600_clear - added some more colors to r600_is_format_supported (copied from r600_conv_pipe_format) - r600_set_framebuffer_state now sets rctx->fb_state - more states are saved before a blit (had to add some accounting for the viewport and the vertex elements state) - fixed a few errors with reference counting | |||
2010-05-27 | r600g: fix driver + shader compiler backend change | Jerome Glisse | |
Change the way we translate from c_compiler to the asic specific representation. Should make things simpler. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-05-27 | r600g: Integrate into build | Jakob Bornecrantz | |
Signed-off-by: Jakob Bornecrantz <wallbraker@gmail.com> | |||
2010-05-27 | r600g: Fix buffer offsets | Jakob Bornecrantz | |
Signed-off-by: Jakob Bornecrantz <wallbraker@gmail.com> | |||
2010-05-27 | r600g: adapt to latest interfaces changes | Marek Olšák | |
- Wrapped the buffer and texture create/destroy/transfer/... functions using u_resource, which is then used to implement the resource functions. - Implemented texture transfers. I left the buffer and texture transfers separate because one day we'll need a special codepath for textures. - Added index_bias to the draw_*elements functions. - Removed nonexistent *REP and *FOR instructions. - Some pipe formats have changed channel ordering, so I've removed/fixed nonexistent ones. - Added stubs for create/set/destroy sampler views. - Added a naive implementation of vertex elements state (new CSO). - Reworked {texture,buffer}_{from,to}_handle. - Reorganized winsys files, removed dri,egl,python directories. - Added a new build target dri-r600. | |||
2010-05-27 | r600g: Initial import | Jerome Glisse | |
2010-05-27 | llvmpipe: s/bool/boolean/ | Brian Paul | |
2010-05-27 | llvmpipe: s/bool/boolean | Brian Paul | |
2010-05-27 | r300g/swtcl: fix secondary color and back-face color outputs | Marek Olšák | |
These piglit tests have been fixed: - bgra-sec-color-pointer - glsl-routing See comments at the beginning of r300_vs_draw.c WPOS is implemented too but it doesn't work yet. I'm still working on it. | |||
2010-05-27 | llvmpipe: Refer to my personal udis86 repository. | José Fonseca | |
As it has a bunch of fixes/additions not merged by upstream yet. | |||
2010-05-27 | r300g: decouple drawing code and two-sided stencil refvalue fallback | Marek Olšák | |
It's now more separate from the rest of the driver and it can be disabled by commenting out just 1 line. Well, I couldn't make the previous version work with SW TCL reliably, that's the reason of this little rework. | |||
2010-05-26 | r300g/swtcl: handle large index count properly | Marek Olšák | |
This fixes piglit/draw-elements. | |||
2010-05-26 | r300g/swtcl: force vertex prefetching for non-indexed primitives | Marek Olšák | |
2010-05-26 | r300g/swtcl: move emitting AOS to prepare_for_rendering | Marek Olšák | |
2010-05-26 | r300g/swtcl: vbo transfer sanity checks | Marek Olšák | |
2010-05-26 | r300g: add get_cs_info winsys entrypoint, abandon check_cs | Marek Olšák | |
2010-05-26 | r300g/swtcl: do not use u_upload_mgr and do not compute max_index | Marek Olšák | |
2010-05-26 | r300g: remove unnecessary includes | Marek Olšák | |
2010-05-26 | r300g: fix fence referencing | Marek Olšák | |
2010-05-26 | r300/compiler: move hardware caps to the radeon_compiler base struct | Marek Olšák | |
Needed for vertex shaders too. | |||
2010-05-26 | rbug: add set sample mask passthrough. | Dave Airlie | |
This at least stops rbug segfaulting at startup. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-05-26 | r300g: more efficient finish + fix comments | Marek Olšák | |
2010-05-26 | r300g: implement fake but compliant fences | Marek Olšák | |
2010-05-25 | r300g: add r300_init_render_functions, remove r300_render.h | Marek Olšák | |
2010-05-25 | r300g: remove r300_query.h | Marek Olšák | |
2010-05-25 | r300g: remove r300_flush.h | Marek Olšák | |
2010-05-25 | r300g: add r300_init_blit_functions, remove r300_blit.h | Marek Olšák | |
2010-05-25 | r300g,util: remove pipe_surface from the util_blitter_copy interface and ↵ | Marek Olšák | |
clean up | |||
2010-05-25 | r300g,util: remove pipe_surface from the util_blitter_fill interface and ↵ | Marek Olšák | |
clean up | |||
2010-05-25 | drm_api: Remove type argument from create screen callback | Jakob Bornecrantz | |
With the removal of DRI1 support there where no use of this argument, some drivers didn't even properly check it. |