Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-01-01 | i965: indentation and formatting fixes | Brian Paul | |
2009-01-01 | i965: implement OPCODE_NRM3/NRM4 | Brian Paul | |
2009-01-01 | i965: whitespace, comment changes | Brian Paul | |
2009-01-01 | mesa: comments, whitespace changes | Brian Paul | |
2009-01-01 | mesa: updated comments about GLSL constants | Brian Paul | |
2008-12-31 | mesa: increase max texture image units and GLSL samplers to 16 | Brian Paul | |
The max texture coord units is still 8. All the fixed-function paths are still limited to 8 too. But GLSL shaders can use more samplers now. Note that some texcoord-related data structures are declared to be 16 elements in size rather than 8. This just simplifies the code in a few places; the extra elements aren't accessible to the user. These changes haven't been extensively tested yet, but sanity checking has been done. It should be possible to increase the max image units/samplers to 32 without doing anything special. Beyond that we'll need longer bitfields in a few places. | |||
2008-12-31 | python: Pass a zero offset to util_draw_vertex_buffer. | José Fonseca | |
2008-12-31 | util: List new file in SConscript. | José Fonseca | |
2008-12-31 | Merge commit 'origin/gallium-0.1' into gallium-0.2 | José Fonseca | |
2008-12-31 | i915: Avoid ptr->int conversion. | José Fonseca | |
2008-12-31 | draw: Avoid integer overflow converting pointers on 64bit archs. | José Fonseca | |
Not really an error, as we only care for the lower 4 bits. | |||
2008-12-31 | intel: Share passthrough transform setup between glBitmap and glDrawPixels. | Eric Anholt | |
The DrawPixels path was missing glViewport care, so blender's toolbar icons would go to the wrong places. Bug #19118. | |||
2008-12-31 | intel: Add support for glBitmap as metaops using GL calls. | Eric Anholt | |
This lets us avoid software fallbacks when clients forget to turn some state off (engine demo) or just do crazy things to test conformance (OGLC). This should probably be brought into mesa generic code so other drivers can make use of it. Bug #19016. | |||
2008-12-30 | Merge commit 'origin/master' into gallium-0.2 | Brian Paul | |
Conflicts: src/mesa/main/config.h | |||
2008-12-30 | mesa: fix bug in evaluation of structure fields | Brian Paul | |
Fixes incorrect size information. See bug 19273. | |||
2008-12-30 | mesa: allow variable indexing into the predefined uniform variable arrays | Brian Paul | |
This allows code such as "vec4 a = gl_LightSource[i].ambient;" to work. When a built-in uniform array is indexed with a variable index we need to "unroll" the whole array into the parameter list (aka constant buffer) because we don't know which elements may be accessed at compile-time. In the case of the gl_LightSource array of size [8], we emit 64 state references into the parameter array (8 elements times 8 vec4s per gl_LightSourceParameters struct). Previously, we only allowed constant-indexed references to uniform arrays (such as gl_LightSource[2].position) which resulted in a single state reference being added to the parameter array, not 64. We still optimize this case. Users should be aware that using "gl_LightSource[i].ambient" in their shaders is a bit expensive since state validation will involve updating all 64 light source entries in the parameter list. | |||
2008-12-30 | mesa: better error message when running out of GLSL samplers | Brian Paul | |
2008-12-30 | mesa: comments for some state vars | Brian Paul | |
2008-12-30 | mesa: increase max constants/uniforms to 256 (vec4 vectors) | Brian Paul | |
2008-12-30 | gallium: Initialize var before use. | José Fonseca | |
2008-12-30 | glut: List new source file in sconscript. | José Fonseca | |
2008-12-30 | mesa: Do not specify types in bitfields. | José Fonseca | |
As advised by gcc -pedantic. | |||
2008-12-30 | draw: Do not specify types in bitfields. | José Fonseca | |
As advised by gcc -pedantic. | |||
2008-12-30 | gallium: Remove unused variables. | José Fonseca | |
2008-12-30 | gallium: Don't redefine INLINE. | José Fonseca | |
INLINE is commonly used in third-party headers. | |||
2008-12-30 | scons: Specify C99 throughout all the tree. | José Fonseca | |
MSVC may not support full C99, but supports more than plain C90. And -pedantic without -std=c99 generates too many spurious warnings (specially C++ style comments) to be of any use. Note that using certain C99 features in the cross-platform parts of Gallium is still not possible; namely mid-of-scope variable declarations and named structure initializers will break MSVC builds. | |||
2008-12-30 | rtasm: Remove spurious semi-colons after function bodies. | José Fonseca | |
2008-12-30 | gdi: Remove accidental keypresses. | José Fonseca | |
2008-12-30 | intel: disable ATI_texture_env_combine3 for i830( and related device). | Xiang, Haihao | |
Thanks to Eric for pointing it out. | |||
2008-12-29 | dri: Fix driWaitForMSC32 when divisor >= 2 and msc < 0. | Eric Anholt | |
We'd come up with a negative remainder, while we were looking for the positive version of it in the loop conditional. And, since the "did we hit our target" break was disabled for the target_msc == 0 ("Just make the divisor/remainder work") path, we'd never exit. Simplify the code by just using int64_t all over instead of trying to do it in a u32 space. | |||
2008-12-29 | R300: missing semicolon | Alex Deucher | |
2008-12-29 | intel: enable ATI_texture_env_combine3. Fixes #17707 | Xiang, Haihao | |
2008-12-28 | r300: remove the unknowns from the indx_buffer code | Dave Airlie | |
2008-12-24 | gallium: implement TGSI_OPCODE_DP2A, add sqrt to NRM3/NRM4 | Brian Paul | |
2008-12-24 | i915: separate the fog term from the specular color term. | Xiang, Haihao | |
Previously fog parameter and specular color are packed into the same dword. Note specular color should be packed in BGRA for device, so if fog parameter and specular color all are present, fog parameter will dirty the alpha term of specular color. This fixes rendering issue when playing 'Yo Frankie' on 915/945. | |||
2008-12-23 | intel: Fix glBitmap clipping for DRI1. | Eric Anholt | |
2008-12-23 | Remove third buffer support from Mesa. | Dave Airlie | |
This is part of the deprecated pageflipping infrastructure. | |||
2008-12-23 | tgsi: fix incomplete rename of loop counter variable | Keith Whitwell | |
2008-12-23 | egl: fix egl closure | Alan Hourihane | |
2008-12-23 | draw: allow driver-override of draw_need_pipeline() | Keith Whitwell | |
2008-12-23 | egl: fix startup query version | Alan Hourihane | |
2008-12-23 | tgsi: Dump indirect register swizzle. | Michal Krol | |
2008-12-23 | egl: support GLXFBConfigs, pbuffers and pixmaps. | Alan Hourihane | |
2008-12-22 | tgsi: Return 0.0 for negative constant register indices. | Michal Krol | |
2008-12-22 | tgsi: Keep address register as a floating point. | Michal Krol | |
2008-12-22 | softpipe: Don't fill surfaces's winsys fields. | José Fonseca | |
This is sometimes checked to distinguish between texture views and (deprecated) standalone surfaces. | |||
2008-12-22 | softpipe: Call surface_alloc_storage to get the pipebuffer for display targets. | José Fonseca | |
Otherwise blitting from display target surfaces to front screen fails in several platforms. | |||
2008-12-22 | Merge commit 'origin/gallium-0.1' into gallium-0.2 | José Fonseca | |
Conflicts: src/gallium/auxiliary/util/Makefile | |||
2008-12-22 | gdi: Cleanup sconsfile. | José Fonseca | |
2008-12-22 | softpipe: initialize refcount and winsys | Jerome Glisse | |