Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mesa: Directly include mfeatures.h in files that perform feature tests. | Vinson Lee | 2011-01-07 | 1 | -0/+1 |
| | |||||
* | mesa: Include mtypes.h in files that use gl_context struct. | Vinson Lee | 2011-01-05 | 1 | -0/+1 |
| | | | | | | Directly include mtypes.h if a file uses a gl_context struct. This allows future removal of headers that are not strictly necessary but indirectly include mtypes.h for a file. | ||||
* | mesa: implement new texture format L16 | Marek Olšák | 2010-12-23 | 1 | -0/+5 |
| | |||||
* | mesa: implement new texture format A16 | Marek Olšák | 2010-12-23 | 1 | -0/+5 |
| | |||||
* | mesa: replace large/MAX_WIDTH stack allocations with heap allocations | Brian Paul | 2010-12-02 | 1 | -3/+24 |
| | |||||
* | mesa: split up the image.c file | Brian Paul | 2010-10-23 | 1 | -0/+1 |
| | | | | | | New files: pack.c - image/row packing/unpacking functions pixeltransfer.c - pixel scale/bias/lookup functions | ||||
* | Drop GLcontext typedef and use struct gl_context instead | Kristian Høgsberg | 2010-10-13 | 1 | -12/+12 |
| | |||||
* | mesa: Remove _mesa_pow(), which is always just pow(). | Eric Anholt | 2010-05-13 | 1 | -1/+1 |
| | |||||
* | Remove _mesa_memcpy in favor of plain memcpy. | Kenneth Graunke | 2010-02-19 | 1 | -3/+3 |
| | | | | This may break the SUNOS4 build, but it's no longer relevant. | ||||
* | mesa: Fix compiler warnings | Karl Schultz | 2010-02-13 | 1 | -2/+2 |
| | | | | | Add explicit casts, fix constant types, fix variable types. Fixes about 340 warnings in MSFT Visual Studio. | ||||
* | Merge branch 'mesa_7_7_branch' | Brian Paul | 2010-01-22 | 1 | -2/+0 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | ||||
| * | mesa: Remove unnecessary headers from texgetimage.c. | Vinson Lee | 2010-01-18 | 1 | -2/+0 |
| | | |||||
* | | Merge branch 'master' into opengl-es-v2 | Chia-I Wu | 2010-01-12 | 1 | -7/+24 |
|\ \ | | | | | | | | | | | | | Conflicts: src/mesa/main/dd.h | ||||
| * | | Merge branch 'mesa_7_7_branch' | Brian Paul | 2009-12-31 | 1 | -1/+1 |
| |\| | | | | | | | | | | | | | | | | | | | | | | Conflicts: configs/darwin src/gallium/auxiliary/util/u_clear.h src/gallium/state_trackers/xorg/xorg_exa_tgsi.c src/mesa/drivers/dri/i965/brw_draw_upload.c | ||||
| | * | mesa: Initialize variable in get_tex_color_index. | Vinson Lee | 2009-12-29 | 1 | -1/+1 |
| | | | |||||
| | * | mesa: Avoid void pointer arithmetic. | José Fonseca | 2009-11-27 | 1 | -1/+2 |
| | | | |||||
| * | | mesa: Fix pointer arithmetic. | Michal Krol | 2009-11-24 | 1 | -1/+3 |
| |/ | |||||
| * | mesa: handle different RowStride in _mesa_get_compressed_teximage | Roland Scheidegger | 2009-11-21 | 1 | -6/+21 |
| | | | | | | | | | | | | drivers storing compressed textures with non-native stride but relying on _mesa_get_compressed_teximage for GetCompressedTexImage otherwise won't work correctly (for instance i965 compressed mipmaps). | ||||
* | | mesa/main: linear_to_nonlinear is not always available. | Chia-I Wu | 2009-11-06 | 1 | -24/+38 |
|/ | | | | Signed-off-by: Chia-I Wu <[email protected]> | ||||
* | mesa: use _mesa_get_current_tex_object() | Brian Paul | 2009-11-02 | 1 | -13/+4 |
| | |||||
* | mesa: fix inverted buffer object test | Brian Paul | 2009-10-30 | 1 | -1/+1 |
| | | | | Fixes bug 24799. | ||||
* | mesa: lift memcpy_get_tex_image() code from intel driver into core Mesa | Brian Paul | 2009-10-29 | 1 | -1/+83 |
| | | | | The code should work for any driver. | ||||
* | mesa: refactor _mesa_get_teximage() code | Brian Paul | 2009-10-29 | 1 | -158/+302 |
| | | | | Break different formats into different functions to make it easier to read. | ||||
* | mesa: consolidate some code in _mesa_GetCompressedTexImageARB() | Brian Paul | 2009-10-29 | 1 | -6/+2 |
| | |||||
* | mesa: move pixels==NULL check in glGetTexImage() | Brian Paul | 2009-10-29 | 1 | -9/+10 |
| | |||||
* | mesa: consolidate some code in _mesa_GetTexImage() | Brian Paul | 2009-10-29 | 1 | -6/+2 |
| | |||||
* | mesa: remove unneedded is_srgb_teximage() function | Brian Paul | 2009-10-29 | 1 | -24/+2 |
| | | | | Use _mesa_get_format_color_encoding() function instead. | ||||
* | Merge branch 'texformat-rework' | Brian Paul | 2009-10-28 | 1 | -28/+39 |
|\ | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/mesa/drivers/dri/radeon/radeon_fbo.c src/mesa/drivers/dri/s3v/s3v_tex.c src/mesa/drivers/dri/s3v/s3v_xmesa.c src/mesa/drivers/dri/trident/trident_context.c src/mesa/main/debug.c src/mesa/main/mipmap.c src/mesa/main/texformat.c src/mesa/main/texgetimage.c | ||||
| * | mesa: remove _mesa_compressed_texture_size() | Brian Paul | 2009-10-24 | 1 | -6/+4 |
| | | | | | | | | Use _mesa_format_image_size() instead. | ||||
| * | mesa: don't include texformat.h | Brian Paul | 2009-10-05 | 1 | -1/+1 |
| | | |||||
| * | mesa: reformatting | Brian Paul | 2009-10-01 | 1 | -6/+6 |
| | | |||||
| * | mesa: remove gl_texture_image::IsCompressed field | Brian Paul | 2009-10-01 | 1 | -1/+1 |
| | | | | | | | | Use _mesa_is_format_compressed() instead. | ||||
| * | mesa: replace gl_texture_format with gl_format | Brian Paul | 2009-09-30 | 1 | -7/+7 |
| | | | | | | | | | | | | Now gl_texture_image::TexFormat is a simple MESA_FORMAT_x enum. ctx->Driver.ChooseTexture format also returns a MESA_FORMAT_x. gl_texture_format will go away next. | ||||
| * | mesa: use more format helper functions | Brian Paul | 2009-09-27 | 1 | -12/+18 |
| | | |||||
* | | mesa: rework error checking code for glGetCompressedTexImage() | Brian Paul | 2009-10-23 | 1 | -48/+122 |
|/ | | | | | | Do all error checking in new getcompressedteximage_error_check() func. Move some additional PBO checks out of the driver fallbacks into the error checking functions. | ||||
* | mesa: if maxLevels==0, target is invalid | Brian Paul | 2009-08-13 | 1 | -1/+4 |
| | |||||
* | mesa: use _mesa_get_current_tex_unit() in more places | Brian Paul | 2009-08-13 | 1 | -15/+4 |
| | |||||
* | mesa: move _mesa_Get[Compressed]TexImage() to texgetimage.c | Brian Paul | 2009-08-13 | 1 | -0/+232 |
| | | | | All the glGetTexImage code is in one file now. | ||||
* | mesa: use _mesa_is_bufferobj() | Brian Paul | 2009-08-12 | 1 | -4/+5 |
| | |||||
* | mesa: Use appropriate float/integer types. | José Fonseca | 2009-06-15 | 1 | -1/+1 |
| | |||||
* | mesa: Use type modifier for float constants. | José Fonseca | 2009-06-15 | 1 | -2/+2 |
| | |||||
* | mesa: move glGetTexImage(), glGetCompresssedTexImage() code into new file | Brian Paul | 2009-04-03 | 1 | -0/+356 |