summaryrefslogtreecommitdiffstats
path: root/src/mesa
Commit message (Collapse)AuthorAgeFilesLines
* r300: minor blit reworkMaciej Cencora2009-12-193-23/+113
| | | | | Use vert/tex coords instead of byte offsets for specyfing src/dst image offsets. This will allow for blitting between tiled/untiled buffers.
* r300: better fix for glCopyTexSubImageMaciej Cencora2009-12-192-16/+22
|
* radeon: protect fbo allocation message with debugAlex Deucher2009-12-181-2/+3
| | | | | | fixes fdo bug 25708 Signed-off-by: Alex Deucher <[email protected]>
* Merge branch 'pipe-format-simplify'Michal Krol2009-12-187-73/+73
|\
| * Move the remaining format pf_get_* functions to u_format.h.Michal Krol2009-12-174-19/+20
| | | | | | | | | | Previously they depended on format blocks, but after removing those they started depending on format encoding.
| * Merge branch 'master' into pipe-format-simplifyMichal Krol2009-12-17145-15666/+3140
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/gallium/auxiliary/draw/draw_pipe_aaline.c src/gallium/auxiliary/draw/draw_pipe_pstipple.c src/gallium/auxiliary/util/u_blit.c src/gallium/auxiliary/util/u_gen_mipmap.c src/gallium/auxiliary/util/u_surface.c src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.c src/gallium/drivers/cell/ppu/cell_texture.c src/gallium/drivers/llvmpipe/lp_texture.c src/gallium/drivers/r300/r300_emit.c src/gallium/drivers/r300/r300_texture.c src/gallium/drivers/softpipe/sp_texture.c src/gallium/drivers/softpipe/sp_tile_cache.c src/gallium/drivers/svga/svga_state_vs.c src/gallium/include/pipe/p_format.h src/gallium/state_trackers/dri/dri_drawable.c src/gallium/state_trackers/egl/egl_surface.c src/gallium/state_trackers/python/p_device.i src/gallium/state_trackers/python/st_softpipe_winsys.c src/gallium/state_trackers/vega/api_filters.c src/gallium/state_trackers/vega/image.c src/gallium/state_trackers/vega/mask.c src/gallium/state_trackers/vega/paint.c src/gallium/state_trackers/vega/renderer.c src/gallium/state_trackers/vega/vg_tracker.c src/gallium/state_trackers/xorg/xorg_crtc.c src/gallium/state_trackers/xorg/xorg_dri2.c src/gallium/state_trackers/xorg/xorg_exa.c src/gallium/state_trackers/xorg/xorg_renderer.c src/gallium/state_trackers/xorg/xorg_xv.c src/gallium/state_trackers/xorg/xvmc/surface.c src/gallium/winsys/drm/nouveau/drm/nouveau_drm_api.c src/gallium/winsys/drm/radeon/core/radeon_buffer.c src/gallium/winsys/egl_xlib/sw_winsys.c src/gallium/winsys/g3dvl/xlib/xsp_winsys.c src/gallium/winsys/gdi/gdi_llvmpipe_winsys.c src/gallium/winsys/gdi/gdi_softpipe_winsys.c src/gallium/winsys/xlib/xlib_cell.c src/gallium/winsys/xlib/xlib_llvmpipe.c src/gallium/winsys/xlib/xlib_softpipe.c src/mesa/state_tracker/st_cb_fbo.c src/mesa/state_tracker/st_cb_texture.c src/mesa/state_tracker/st_texture.c
| * | s/desc->type/desc->channel[0].type/Michal Krol2009-12-171-3/+3
| | |
| * | Revert "Simplify the redundant meaning of format layout."Michal Krol2009-12-091-2/+3
| | | | | | | | | | | | This reverts commit eb926ddf9eee1095c7fc12013f0b8375bbaeca6f.
| * | Simplify the redundant meaning of format layout.Michal Krol2009-12-081-3/+2
| | | | | | | | | | | | | | | We really just need to know whether the format is compressed or not. For more detailed information format colorspace should suffice.
| * | Remove remaining pipe format utility functions.Michal Krol2009-12-081-34/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Depricate pf_type(), pf_size_*(), pf_layout() and pf_exp2(). Map depricated PIPE_FORMAT_TYPE to new UTIL_FORMAT_ values: UNKNOWN = TYPE_VOID UNORM = TYPE_UNSIGNED + LAYOUT_ARITH SNORM = TYPE_SIGNED + LAYOUT_ARITH FIXED = TYPE_FIXED FLOAT = TYPE_FLOAT USCALED = TYPE_UNSIGNED + LAYOUT_ARRAY SSCALED = TYPE_SIGNED + LAYOUT_ARRAY SRGB = TYPE_COLORSPACE_SRGB
| * | Remove pf_swizzle_* internal macros.Michal Krol2009-12-031-4/+7
| | |
| * | Move pf_get_component_bits() to u_format auxiliary module.Michal Krol2009-12-033-28/+22
| | |
| * | Move pf_get_bits/size() to u_format auxiliary module.Michal Krol2009-12-031-1/+1
| | |
| * | Move pf_get_block() to u_format auxiliary module.Michal Krol2009-12-033-4/+5
| | |
| * | Move pf_is_depth_and_stencil() to u_format auxiliary module.Michal Krol2009-12-033-6/+8
| | |
| * | Move pf_is_depth_stencil() to u_format auxiliary module.Michal Krol2009-12-032-2/+3
| | |
| * | Move pf_is_compressed() to u_format auxiliary module.Michal Krol2009-12-031-1/+2
| | |
* | | r600 : enable gl2, set R600_ENABLE_GLSL_TEST by default.Richard Li2009-12-181-1/+1
| | |
* | | radeon: fix frontbuffer read/drawpixelsDave Airlie2009-12-185-16/+58
| |/ |/| | | | | | | | | | | Bug 25699 The main problem was the optimising flush wasn't doing the front rendering checks properly.
* | Merge branch 'glsl-pp-rework-2'Michal Krol2009-12-1738-12888/+410
|\ \
| * | Remove grammar module -- no dependencies left.Michal Krol2009-12-1214-4322/+2
| | |
| * | slang: Delete a file that is now autogenerated.Michal Krol2009-12-121-880/+0
| | | | | | | | | | | | | | | | | | This file has been modified in master and removed in feature branch. This gave a merge conflict I couldn't resolve by removing and git adding it to index.
| * | Merge branch 'master' into glsl-pp-rework-2Michal Krol2009-12-12610-46372/+44414
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: progs/perf/drawoverhead.c progs/perf/teximage.c progs/perf/vbo.c progs/perf/vertexrate.c src/mesa/shader/slang/library/slang_common_builtin_gc.h
| * | | scons: Get GLSL code building correctly when cross compiling.José Fonseca2009-12-101-0/+8
| | | | | | | | | | | | | | | | | | | | This is quite messy. GLSL code has to be built twice: one for the host OS, another for the target OS.
| * | | mesa: added new libglslpp.a and libglslcl.a to libGL buildBrian Paul2009-12-102-5/+10
| | | |
| * | | slang: Predefine ES symbols for FEATURE_es2_glsl.Michal Krol2009-12-101-0/+9
| | | |
| * | | slang: Explicitly enable ARB_draw_buffers and ARB_texture_rectangle.Michal Krol2009-12-101-0/+7
| | | | | | | | | | | | | | | | They are no longer built into the glsl preprocessor.
| * | | Build mesa glsl with make.michal2009-12-102-42/+28
| | | | | | | | | | | | | | | | Still don't know how to add glsl to mesa dependencies.
| * | | slang/library: Don't need the *_gc.h files, they are autogenerated now.Michal Krol2009-11-257-2828/+0
| | | |
| * | | scons: Autogenerate GLSL builtin library *_gc.h from *.gc files.Michal Krol2009-11-252-1/+47
| | | |
| * | | slang: Fix order of parameters to sl_pp_tokenise().Michal Krol2009-11-231-1/+1
| | | |
| * | | slang: No need to purify source text for tokeniser.Michal Krol2009-11-211-12/+2
| | | |
| * | | slang: Report syntax parser errors.Michal Krol2009-11-131-5/+10
| | | |
| * | | slang: Regenerate .gc files.Michal Krol2009-11-135-2590/+2581
| | | |
| * | | slang: Get rid of the old syntax file and utilities.Michal Krol2009-11-135-2400/+0
| | | |
| * | | slang: Plug in the new syntax parser.Michal Krol2009-11-131-57/+58
| | | |
| * | | slang: Update for glsl/pp interface changes.Michal Krol2009-11-101-2/+4
| | | |
| * | | grammar: Include the correct glsl pp header.Michal Krol2009-09-231-1/+1
| | | |
| * | | slang: Differentiate between uints and floats.Michal Krol2009-09-223-5/+6
| | | |
| * | | grammar: Differentiate between uints and floats.Michal Krol2009-09-221-2/+4
| | | |
| * | | slang: Use glsl pp public interface.Michal Krol2009-09-181-18/+16
| | | |
| * | | Merge commit 'origin/master' into glsl-pp-rework-2Michal Krol2009-09-1744-1924/+2641
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: src/gallium/winsys/gdi/SConscript
| * | | | slang: Propagate error messages from preprocessor.Michal Krol2009-09-161-0/+5
| | | | |
| * | | | slang: Invoke the preprocessor from withing the slang compiler.Michal Krol2009-09-164-137/+132
| | | | | | | | | | | | | | | | | | | | This allows us to validate the shader version number.
| * | | | grammar: Adapt to pp interface change.Michal Krol2009-09-141-1/+4
| | | | |
| * | | | Merge commit 'origin/master' into glsl-pp-rework-2Michal Krol2009-09-1496-5855/+6869
| |\ \ \ \
| * | | | | slang: Correctly handle end of tokens marker.Michal Krol2009-09-083-2/+4
| | | | | |
| * | | | | slang: Do not parse whitespace.Michal Krol2009-09-082-190/+72
| | | | | | | | | | | | | | | | | | | | | | | | The preprocessor tokeniser deals with those.
| * | | | | slang: Correctly parse numbers from the new preprocessor.Michal Krol2009-09-083-38/+123
| | | | | |
| * | | | | grammar: Fix token stripping.Michal Krol2009-09-081-0/+4
| | | | | |