Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-28 | Merge commit 'origin/perrtblend' | Roland Scheidegger | |
Conflicts: src/gallium/drivers/softpipe/sp_screen.c src/gallium/include/pipe/p_defines.h | |||
2010-01-28 | gallium: Enable multiple constant buffers for vertex and geometry shaders. | Michal Krol | |
2010-01-26 | st/mesa: Silence uninitialized variable warning. | Vinson Lee | |
2010-01-26 | mesa/st: code cleanups for new blend functionality | Roland Scheidegger | |
minor code changes, style and comment fixes | |||
2010-01-25 | Merge branch 'mesa_7_7_branch' | Brian Paul | |
Conflicts: src/mesa/drivers/dri/intel/intel_screen.c src/mesa/drivers/dri/intel/intel_swapbuffers.c src/mesa/drivers/dri/r300/r300_emit.c src/mesa/drivers/dri/r300/r300_ioctl.c src/mesa/drivers/dri/r300/r300_tex.c src/mesa/drivers/dri/r300/r300_texstate.c | |||
2010-01-25 | st/mesa: handle EXT_draw_buffers2 per rendertarget blend enables / colormasks | Roland Scheidegger | |
uses the new gallium per-rt blend functionality | |||
2010-01-25 | Fix compressed texture loads for non-minimal pitches again | Luca Barbieri | |
My commit eea6a7639f767b1d30b6ef1f91a9c49e3f3b78f0 does a memcpy of height lines, but that's wrong because the texture has a block layout and we must thus use the number of vertical blocks instead of the height. Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-01-24 | st/mesa: fix int->uint conversion for negative scissor bound values | Brian Paul | |
Based on a patch by Xavier Chantry <chantry.xavier@gmail.com>: If x+width or y+height is negative, then maxx or maxy will get a bogus value when converting that to unsigned. Fix this by setting 0 as minimal value. This was also triggered by teeworlds, but only with some combination of resolution and map section. For example upper part of dm2 at 1280x1024. | |||
2010-01-24 | st/mesa: fix unsigned/signed breakage in scissor | Xavier Chantry | |
commit 53174afeeb introduced a portability change that converted GLint x,y to GLuint. That breaks when x and y are negative, which seems to be allowed, and which at least one game uses : teeworlds. Rather than simply reverting the change, it seems possible to convert the 16bit unsigned to GLint so that comparisons are made between signed integers instead. This hopefully does not break anything while keeping MSVC happy. Signed-off-by: Xavier Chantry <chantry.xavier@gmail.com> Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-01-22 | st/mesa: fix incorrect freeing of drawpixels vertex shaders | Brian Paul | |
These shaders are not st_vertex_shaders, but tgsi ureg shaders. Fixes fd.o bug 25959. | |||
2010-01-22 | Merge branch 'mesa_7_7_branch' | Brian Paul | |
Conflicts: src/gallium/auxiliary/draw/draw_context.c src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c src/gallium/auxiliary/pipebuffer/Makefile src/gallium/auxiliary/pipebuffer/SConscript src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c src/gallium/auxiliary/tgsi/tgsi_scan.c src/gallium/drivers/i915/i915_surface.c src/gallium/drivers/i915/i915_texture.c src/gallium/drivers/llvmpipe/lp_setup.c src/gallium/drivers/llvmpipe/lp_tex_sample_c.c src/gallium/drivers/llvmpipe/lp_texture.c src/gallium/drivers/softpipe/sp_prim_vbuf.c src/gallium/state_trackers/xorg/xorg_dri2.c src/gallium/winsys/drm/intel/gem/intel_drm_api.c src/gallium/winsys/drm/nouveau/drm/nouveau_drm_api.c src/gallium/winsys/drm/radeon/core/radeon_drm.c src/gallium/winsys/drm/vmware/core/vmw_screen_dri.c src/mesa/state_tracker/st_cb_clear.c | |||
2010-01-21 | st/mesa: Remove unnecessary header from st_cb_viewport.c. | Vinson Lee | |
2010-01-21 | mesa: Use pipe_buffer_write_nooverlap where appropriate. | José Fonseca | |
2010-01-20 | gallium: prepare for per-rendertarget blend enables, writemasks, blend funcs | Roland Scheidegger | |
GL 3.0 (EXT_draw_buffers2) and other APIs allow independent blend enables and write masks per render target, ARB_draw_buffers_blend (and other APIs) also allow independent blend functions. Things like dithering, logic ops however are not extended to be per rendertarget, that might be conceptually possible however it doesn't look like any API wants to expose this. | |||
2010-01-20 | st/mesa: fix format logic in compatible_src_dst_formats() | Brian Paul | |
We need to consider the user-requested formats, not the actual device- chosen formats. See code comments for more details. | |||
2010-01-20 | Merge remote branch 'origin/opengl-es-v2' | Chia-I Wu | |
2010-01-19 | st/mesa: enable EXT_framebuffer_multisample | Marek Olšák | |
Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-01-19 | st/dri: update dri2 drawables when viewport is changed | Ben Skeggs | |
Fixes gnome-shell on nouveau, as well as window resize with various other applications. Signed-off-by: Ben Skeggs <bskeggs@redhat.com> | |||
2010-01-18 | mesa: Handle PIPE_FORMAT_B8G8R8X8_UNORM. | José Fonseca | |
2010-01-18 | st/mesa: change instruction count assertion to > 0 | Brian Paul | |
Shaders should at least have an END instruction. | |||
2010-01-18 | st/mesa: updated comments and whitespace | Brian Paul | |
2010-01-18 | st/mesa: fix memory leak in st_translate_mesa_program | Marcin Slusarz | |
Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-01-15 | Merge branch 'gallium-noconstbuf' | Roland Scheidegger | |
Conflicts: src/gallium/drivers/softpipe/sp_draw_arrays.c src/mesa/state_tracker/st_draw_feedback.c | |||
2010-01-15 | st/mesa: Initialise vertex element instance divisor to 0. | Michal Krol | |
2010-01-16 | st/mesa: Remove unnecessary header from st_cb_drawpixels.c. | Vinson Lee | |
2010-01-16 | st/mesa: Remove unnecessary header from st_atom_framebuffer.c. | Vinson Lee | |
2010-01-16 | st/mesa: Remove unnecessary header from st_atom_pixeltransfer.c. | Vinson Lee | |
2010-01-16 | st/mesa: Remove unnecessary header from st_atom_sampler.c. | Vinson Lee | |
2010-01-16 | st/mesa: Remove unnecessary header from st_atom_shader.c. | Vinson Lee | |
2010-01-16 | st/mesa: Remove unnecessary headers from st_cb_accum.c. | Vinson Lee | |
2010-01-16 | st/mesa: Remove unnecessary headers from st_cb_bitmap.c. | Vinson Lee | |
2010-01-15 | st/mesa: Remove unnecessary headers from st_cb_blit.c. | Vinson Lee | |
2010-01-15 | st/mesa: Remove unnecessary headers from st_cb_clear.c. | Vinson Lee | |
2010-01-15 | st/mesa: Remove unnecessary headers from st_cb_drawpixels.c. | Vinson Lee | |
2010-01-15 | st/mesa: Remove unnecessary header from st_cb_fbo.c. | Vinson Lee | |
2010-01-15 | st/mesa: Remove unnecessary headers from st_cb_feedback.c. | Vinson Lee | |
2010-01-15 | st/mesa: Remove unnecessary header from st_cb_program.c. | Vinson Lee | |
2010-01-15 | st/mesa: Remove unnecessary header from st_cb_queryobj.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary header from st_cb_rasterpos.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary headers from st_cb_readpixels.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary header from st_cb_strings.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary headers from st_cb_texture.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary headers from st_cb_viewport.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary headers from st_context.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary header from st_draw_feedback.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary header from st_extensions.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary header from st_format.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary headers from st_framebuffer.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary headers from st_gen_mipmap.c. | Vinson Lee | |
2010-01-14 | Merge branch 'mesa_7_7_branch' | Jakob Bornecrantz | |
Conflicts: src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c src/gallium/auxiliary/util/Makefile src/gallium/drivers/r300/r300_state_derived.c |