Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-08-30 | r600g: fix warning introduced by last commit. | Dave Airlie | |
2010-08-30 | r600g: add initial relative support to assembler | Dave Airlie | |
passes another ~20 piglits. /me starts to run out low hanging fruit around now. | |||
2010-08-30 | r600g: add KILP support | Dave Airlie | |
passes glsl1-discard tests | |||
2010-08-30 | r600g: fix SSG and op3 neg writing | Dave Airlie | |
8 more piglits, mainly the two SSG tests. | |||
2010-08-30 | r600g : add basic loop support. | Dave Airlie | |
Adds BGNLOOP, BRK, CONT, ENDLOOP support, ported from r600c. 17 piglits more on r300g.tests. | |||
2010-08-30 | r600g: use the values from the correct literals | Bas Nieuwenhuizen | |
Created an array for literals as we should not always use the last declared literal. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-08-30 | r600g: added literals where needed for POW instruction | Bas Nieuwenhuizen | |
Fixes size calculation for the bytecode buffer. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-08-28 | nvfx: Remove util_is_pot in favor of util_is_power_of_two. | Vinson Lee | |
This is a follow up to commit 89b2897220acfacdc431f138377fbcec9f0ea812. | |||
2010-08-29 | r300g,u_blitter: use u_framebuffer | Marek Olšák | |
Removing another function duplication in u_blitter. | |||
2010-08-29 | util: remove util_is_pot in favor of util_is_power_of_two | Marek Olšák | |
The function was duplicated. | |||
2010-08-28 | softpipe: Include missing header in sp_flush.c. | Vinson Lee | |
Include p_screen.h for complete type to pipe_screen. | |||
2010-08-28 | llvmpipe: Include missing header in lp_flush.c. | Vinson Lee | |
Include p_screen.h for complete type to pipe_screen. | |||
2010-08-28 | r300g: fix blitting between 2D NPOT mipmaps | Marek Olšák | |
Even though MIP filtering is not supported, we can bind an arbitrary mipmap as the zero mipmap level. NPOT textures now follow GL_TEXTURE_BASE_LEVEL and GL_TEXTURE_MIN_LOD. This fixes piglit/fbo-copyteximage. | |||
2010-08-28 | r300g: fix min/max lod computation | Mathias Fröhlich | |
2010-08-28 | r300g: set the correct value in PVS_NUM_CNTLRS | Marek Olšák | |
As per docs. | |||
2010-08-28 | llvmpipe: Remove unnecessary header. | Vinson Lee | |
2010-08-28 | trace: Don't try to dump the rgba array if null | Jakob Bornecrantz | |
2010-08-27 | r600g: fix vbo size | Jerome Glisse | |
Silence the kernel, vbo size is size - 1. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-08-27 | llvmpipe: use util_iround in place of round | Keith Whitwell | |
Fix mingw build. | |||
2010-08-27 | llvmpipe: eliminate tri->dx, tri->dy values | Keith Whitwell | |
Use an internal struct for line setup information. | |||
2010-08-27 | llvmpipe: point sprites rasterization | Hui Qi Tay | |
Point sprites now done in the rasterizer setup code instead of going through the draw module. | |||
2010-08-27 | llvmpipe: native point rasterization with better pixel rasterization | Hui Qi Tay | |
A few subpixel_snap and fixed width changes. Conflicts: src/gallium/drivers/llvmpipe/lp_setup_point.c | |||
2010-08-27 | llvmpipe: native point rasterization | Hui Qi Tay | |
Conflicts: src/gallium/drivers/llvmpipe/lp_setup_context.h src/gallium/drivers/llvmpipe/lp_setup_line.c src/gallium/drivers/llvmpipe/lp_setup_tri.c | |||
2010-08-27 | llvmpipe: update line rasterization code to current master | Keith Whitwell | |
2010-08-27 | llvmpipe: native line rasterization with correct pixel rasterization | Hui Qi Tay | |
Line rasterization that follows diamond exit rule. Can still optimize logic for start/endpoints. | |||
2010-08-27 | llvmpipe: native rasterization for lines | Hui Qi Tay | |
Rasterize lines directly by treating them as 4-sided polygons. Still need to check the exact pixel rasteration. | |||
2010-08-27 | llvmpipe: add lp_setup_coef to makefile | Keith Whitwell | |
2010-08-27 | llvmpipe: intrinsics version of triangle coeficient calculation | Keith Whitwell | |
Looks nice, but makes almost no impact on performance - maybe a percent or so in isosurf, nothing elsewhere. May be of use later on. | |||
2010-08-27 | r300g: Include missing header in r300_texture.h. | Vinson Lee | |
Include p_compiler.h for uint32_t and boolean symbols. | |||
2010-08-27 | Revert "r600g: simplify states" | Dave Airlie | |
This reverts commit bd25e23bf3740f59ce8859848c715daeb9e9821f. Apart from introducing a lot of hex magic numbers and being highly impenetable code, it causes lots of lockups on an average piglit run that always runs without lockups. Always run piglit before/after doing big things like this. | |||
2010-08-27 | r600g: add initial if/else/endif support | Dave Airlie | |
this adds handling for some more CF instructions and conditions also adds parameter for stack size emission These seem to pass on VS with the stack size hack but not on FS, TODO: fix FS + stack size calcs | |||
2010-08-27 | r600g: optimise op2 and swapped op2 emission. | Dave Airlie | |
this makes op2 emission smaller, since it skips instructions that don't write to the dst. not sure if this could have unwanted side effects but try it and see. | |||
2010-08-27 | r600g: add exp support in theory. | Dave Airlie | |
though it isn't passing the test, and this instruction is pure bonghits. | |||
2010-08-27 | r600g: add DPH support. | Dave Airlie | |
2010-08-26 | llvmpipe: fix PIPE_CAP_MAX_VERTEX_TEXTURE_UNITS query | Brian Paul | |
Fixes crashes in glean glsl1 and demos/src/glsl/vert-tex. See comments for details. | |||
2010-08-26 | r300g: Include missing header in r300_texture_desc.h. | Vinson Lee | |
Include p_format.h for enum pipe_format symbol. Fixes r300g build. | |||
2010-08-26 | r300g: fix constant buffer upload once again for r3xx->r4xx | Marek Olšák | |
2010-08-26 | nouveau: handle early initialization errors | Marcin Slusarz | |
handle very early errors in pipe_screen creation (failure of nouveau_screen_init in nv50_screen_create) Signed-off-by: Francisco Jerez <currojerez@riseup.net> | |||
2010-08-25 | r600g: simplify states | Jerome Glisse | |
Directly build PM4 packet, avoid using malloc (no states are bigger than 128 dwords), remove unecessary informations, remove pm4 building in favor of prebuild pm4 packet. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-08-25 | nvfx: Set pointer to NULL after free. | Vinson Lee | |
Guard against potential use after free. | |||
2010-08-25 | r300g: fix potentially uninitialized variables in create_rs_state | Marek Olšák | |
It had no impact on correctness, though. Reported by Vinson Lee. | |||
2010-08-25 | llvmpipe: fix bad patch application | Keith Whitwell | |
2010-08-25 | llvmpipe: Remove unnecessary header. | Vinson Lee | |
2010-08-25 | llvmpipe: track drawing region as a single u_rect | Keith Whitwell | |
2010-08-25 | llvmpipe: better triangle debugging | Keith Whitwell | |
2010-08-25 | llvmpipe: cull zero-area triangles early | Keith Whitwell | |
2010-08-25 | llvmpipe: more rasterization counters | Keith Whitwell | |
2010-08-25 | llvmpipe: move some fence functions into lp_screen.c | Keith Whitwell | |
2010-08-25 | llvmpipe: wake all threads waiting on a fence | Keith Whitwell | |
2010-08-25 | llvmpipe: fence debugging, add llvmpipe_finish | Keith Whitwell | |