Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-10-22 | dri/drivers: update driNewRenderbuffer() to take a gl_format | Brian Paul | |
Now pass a specific MESA_FORMAT_x token to indicate the renderbuffer's format. This is better than passing a GLenum and having to guess the specific format. I'm unable to test all the drivers, but any issues should be easy to fix. | |||
2009-10-22 | radeon: simplify radeon_create_renderbuffer() | Brian Paul | |
2009-10-22 | r600: fix depth span macros for format changes | Alex Deucher | |
2009-10-22 | radeon: fix some renderbuffer format bugs | Brian Paul | |
2009-10-21 | i915: replace MESA_FORMAT_Z24_S8 with MESA_FORMAT_S8_Z24 | Brian Paul | |
And change parameter type. | |||
2009-10-21 | radeon: get rid of z24s8 <-> s8z24 conversions in span code | Brian Paul | |
Can just use s8z24 everywhere. Note: the WRITE_DEPTH macro for R600 may need to be fixed. | |||
2009-10-21 | radeon: replace MESA_FORMAT_Z24_S8 with MESA_FORMAT_S8_Z24 | Brian Paul | |
Core Mesa deals with MESA_FORMAT_S8_Z24 everywhere it should so we shouldn't have to use MESA_FORMAT_Z24_S8 anymore. | |||
2009-10-21 | intel: use MESA_FORMAT_S8_Z24 format and avoid z24s8/s8z24 conversions | Brian Paul | |
2009-10-21 | i965: change parameter type to gl_format | Brian Paul | |
2009-10-15 | dri/common: updated #includes | Brian Paul | |
2009-10-15 | dri/common: use _mesa_little_endian() and update comments | Brian Paul | |
2009-10-15 | dri/common: fix broken _dri_texformat_* initializations | Brian Paul | |
2009-10-14 | radeon: initialize renderbuffer Format field in radeon_create_renderbuffer() | Brian Paul | |
Plus, use MESA_FORMAT_S8_Z24 everywhere. | |||
2009-10-08 | mesa: remove a bunch of gl_renderbuffer fields | Brian Paul | |
_ActualFormat is replaced by Format (MESA_FORMAT_x). ColorEncoding, ComponentType, RedBits, GreenBits, BlueBits, etc. are all replaced by MESA_FORMAT_x queries. | |||
2009-10-05 | drivers: don't include texformat.h | Brian Paul | |
And remove other unneeded #includes while we're at it. | |||
2009-10-05 | mesa: lift _mesa_set_fetch_functions() calls out of drivers | Brian Paul | |
Call it from in the main Mesa glTexImage functions. | |||
2009-10-01 | mesa: removed gl_texture_image::CompressedSize field | Brian Paul | |
Just call ctx->Driver.CompressedTextureSize() when we need to get the compressed image size. | |||
2009-10-01 | mesa: move mesa_set_fetch_functions() | Brian Paul | |
2009-10-01 | radeon: fix tx_table[] entry | Brian Paul | |
XXX need to still verify that the table entries are in correct order. | |||
2009-10-01 | savage: s/Xfree/_mesa_free/ | Brian Paul | |
2009-10-01 | mesa: remove gl_texture_image::IsCompressed field | Brian Paul | |
Use _mesa_is_format_compressed() instead. | |||
2009-09-30 | mesa: replace gl_texture_format with gl_format | Brian Paul | |
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. | |||
2009-09-28 | drivers: use _mesa_texstore | Brian Paul | |
2009-09-28 | drivers: use new _mesa_texstore() function | Brian Paul | |
2009-09-27 | drivers: use more mesa format functions | Brian Paul | |
2009-09-27 | mesa/drivers: use _mesa_get_format_bytes() | Brian Paul | |
2009-09-27 | mesa/drivers: use _mesa_get_format_bytes() | Brian Paul | |
2009-09-27 | via: use mesa texture format helper functions | Brian Paul | |
2009-09-27 | mesa: use _mesa_get_texstore_func() | Brian Paul | |
2009-09-25 | Merge branch 'asm-shader-rework-2' | Ian Romanick | |
Conflicts: src/mesa/shader/program_parse.tab.c | |||
2009-09-25 | radeon: Fix newlines. | Michal Krol | |
2009-09-25 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
Conflicts: src/mesa/drivers/dri/intel/intel_clear.c | |||
2009-09-24 | intel: Flush the batch when we're about to subdata into a VBO. | Eric Anholt | |
This fixes the clears in openarena with the new metaops clear code, and the new piglit vbo-subdata-sync test. Bug #23857. | |||
2009-09-24 | i965: Clean up some mess with the batch cache. | Eric Anholt | |
Its flagging of extra state that's already flagged by the vtbl new_batch when appropriate was confusing my tracking down of the OA clear bug. | |||
2009-09-24 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
Conflicts: src/mesa/vbo/vbo_exec_array.c | |||
2009-09-24 | i965: Emit zero initialization for NV VP temporaries as required. | Eric Anholt | |
This is similar to what r300 does inside the driver, but I've added it as a generic option since it seems most hardware will want it. Fixes piglit nv-init-zero-reg.vpfp and nv-init-zero-addr.vpfp. | |||
2009-09-24 | i965: Remove assert about NV_vp now that it somewhat works. | Eric Anholt | |
2009-09-24 | i965: Load NV program matrices when required. | Eric Anholt | |
2009-09-24 | intel: use default array/element buffers in intel_generate_mipmap() | Brian Paul | |
If there happened to be a bound VBO when intel_generate_mipmap() was called we blew up because of a bad vertex array pointer. Fixes regnumonline, bug 23859. | |||
2009-09-24 | Merge branch 'mesa_7_6_branch' | Pauli Nieminen | |
2009-09-24 | radeon: Fix scissors for r600 KMS. | Pauli Nieminen | |
Radeon generic scissors code had problem that some of code was using exclusive and some inclusive bottom right corner. Only r600 driver is using exclusive coordinate so changed generic code to pass inclusive coordinate and r600 driver changes BR coordinate to be exclusive. | |||
2009-09-24 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
Conflicts: src/mesa/drivers/dri/r600/r700_assembler.c src/mesa/drivers/dri/r600/r700_chip.c src/mesa/drivers/dri/r600/r700_render.c src/mesa/drivers/dri/r600/r700_vertprog.c src/mesa/drivers/dri/r600/r700_vertprog.h src/mesa/drivers/dri/radeon/radeon_span.c | |||
2009-09-24 | r600 : fix draw_prim bug: vertex fetcher setting. | Richard Li | |
2009-09-24 | r600 : disable draw_prim for now. | Richard Li | |
2009-09-24 | r600: add support for CUBE textures, also TXP | Andre Maasikas | |
seems to work here ... | |||
2009-09-24 | r600: fix typo in the last commit | Alex Deucher | |
128 gprs, 256 reg-based consts | |||
2009-09-24 | r600: various cleanups | Alex Deucher | |
- max texture size is 8k, but mesa doesn't support that at the moment. - attempt to set shader limits to what the hw actually supports - clean up some old r300 cruft - no need to explicitly disable irqs. This is fixed in the drm now. Signed-off-by: Alex Deucher <alexdeucher@gmail.com> | |||
2009-09-24 | r600: fix some issues with LIT instruction | Andre Maasikas | |
- MUL_LIT is ALU.Trans instruction - some Trans instructions can take 3 arguments - don't clobber dst.x, use dst.z as temp, it'll get written correct value in last insn - respect source swizzles | |||
2009-09-24 | r600: fix point sizes | Alex Deucher | |
registers takes radius | |||
2009-09-24 | r600: fix polygon offset | Alex Deucher | |