summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2009-01-08glut: Unlist file.José Fonseca
Again..
2009-01-08gdi: Add newline at end of file.José Fonseca
2009-01-08gallium: Replace uint64 by standard uint64_t.José Fonseca
uint64 is not (so?) standard, and often redefined by third parties, causing name clashes.
2009-01-08draw: Predeclare struct.José Fonseca
2009-01-08Merge commit 'origin/gallium-0.1' into gallium-0.2José Fonseca
Conflicts: src/gallium/auxiliary/tgsi/tgsi_exec.c src/gallium/drivers/cell/spu/spu_command.h src/gallium/include/pipe/p_shader_tokens.h src/mesa/main/config.h src/mesa/main/mtypes.h src/mesa/shader/prog_execute.c src/mesa/shader/slang/slang_emit.c src/mesa/state_tracker/st_program.c src/mesa/state_tracker/wgl/stw_wgl.h src/mesa/state_tracker/wgl/stw_wgl_pixelformat.h
2009-01-08mesa: Add _mesa_snprintf.José Fonseca
On Windows snprintf is renamed as _snprintf.
2009-01-08mesa: fix GL_DEPTH_CLEAR_VALUE castingBrian Paul
2009-01-08mesa: fix float->int mapping for glGetIntegerv(GL_DEPTH_CLEAR_VALUE)Brian Paul
(cherry picked from commit 8124faf89d638285d8e9aa93adc3ca7f4ee729f3) Conflicts: src/mesa/main/get.c
2009-01-08mesa: Move var declaration to top of scope.José Fonseca
2009-01-08wgl: Do not provide DllMain inside the state tracker.José Fonseca
MS CRT libraries already provide a default DllMain entrypoint, and MS Linker will complain if it finds the same symbol in two different libraries. Therefore the DllMain has to be in (each) winsys.
2009-01-08gdi: Fix warning.José Fonseca
2009-01-08wgl: Ensure public symbols get the proper DLL linkage attributes.José Fonseca
2009-01-08glut: Fix build.José Fonseca
2009-01-08mesa: Ensure gl* symbols are marked as dllexport on windows.José Fonseca
2009-01-08mesa: Use explicit casts when precision is lost.José Fonseca
Silences MSVC.
2009-01-08mesa: Fix windows build when UNICODE is defined.José Fonseca
2009-01-07mesa: Add _mesa_snprintf.José Fonseca
On Windows snprintf is renamed as _snprintf.
2009-01-06add GL_READ_FRAMEBUFFER_BINDING_EXT case, regenerate get.c fileBrian Paul
(cherry picked from commit 816fbeaa813e5cdca314a39677c74c8dc700d35a) Conflicts: src/mesa/main/get.c
2009-01-06mesa: fix GL_DEPTH_CLEAR_VALUE castingBrian Paul
2009-01-06mesa: fix cast/conversion for optional codeBrian
(cherry picked from commit 1e3a44fab068f00378613456036716d0c3772969)
2009-01-06mesa: fix float->int mapping for glGetIntegerv(GL_DEPTH_CLEAR_VALUE)Brian Paul
(cherry picked from commit 8124faf89d638285d8e9aa93adc3ca7f4ee729f3) Conflicts: src/mesa/main/get.c
2009-01-06mesa: pass ctx to link_uniform_vars() to fix build errorBrian Paul
2009-01-06mesa: Move var declaration to top of scope.José Fonseca
2009-01-06wgl: Do not provide DllMain inside the state tracker.José Fonseca
MS CRT libraries already provide a default DllMain entrypoint, and MS Linker will complain if it finds the same symbol in two different libraries. Therefore the DllMain has to be in (each) winsys.
2009-01-06gdi: Fix warning.José Fonseca
2009-01-06wgl: Ensure public symbols get the proper DLL linkage attributes.José Fonseca
2009-01-06glut: Fix build.José Fonseca
2009-01-06mesa: Ensure gl* symbols are marked as dllexport on windows.José Fonseca
2009-01-06mesa: Use explicit casts when precision is lost.José Fonseca
Silences MSVC.
2009-01-06mesa: fix a GLSL swizzled writemask bugBrian Paul
This fixes cases such as: vec4 v4; vec2 v2; v4.xz.yx = v2; The last line now correctly compiles into MOV TEMP[1].xz, TEMP[0].yyxw; Helps to fix the Humus Domino demo. See bug 19189. (cherry picked from commit 9736d8f03364068c9ca786f88a4c2881d98d5768)
2009-01-06mesa: fix warning about possibly undefined var in GLSL compilerBrian Paul
(cherry picked from commit 724ed5b84bc2491da244d091de889d5b35503b5d)
2009-01-06mesa: fix another "out of samplers" problemBrian Paul
Now only the samplers that are actually used by texture() functions are saved in the uniform variable list. Before, we could run out of samplers if too many were declared while only some of them were actually used. (cherry picked from commit 1fad6ccb756ae33ca3115f59c99ca8abbeb0321e) Conflicts: src/mesa/shader/slang/slang_link.c
2009-01-06mesa: updated comments about GLSL constantsBrian Paul
(cherry picked from commit dfada459aabf1a02dc2dbdb6644283fc95df2586)
2009-01-06mesa: fix bug in evaluation of structure fieldsBrian Paul
Fixes incorrect size information. See bug 19273. (cherry picked from commit e8d7db31e2a6784c765911233cb3d888f612837f)
2009-01-06mesa: allow variable indexing into the predefined uniform variable arraysBrian 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. (cherry picked from commit c6537ac8b8130cf2271c8d1e51137a575073c762)
2009-01-06mesa: better error message when running out of GLSL samplersBrian Paul
(cherry picked from commit ca0540e25c86b8095511868b0cbe96d7e85f7437)
2009-01-06mesa: disable debug outputBrian Paul
(cherry picked from commit 3be8d6db9e8bfbd1b3ebf9ac382857ad1e6ef753)
2009-01-06mesa: fix some GLSL array regressionsBrian Paul
array.length() wasn't working. Swizzle mask for accessing elements of float arrays was incorrect. (cherry picked from commit 368df1615ef65afed96a44e1f43ade8cc703696f)
2009-01-06mesa: bump glsl grammar revisionBrian Paul
And update some copyrights. (cherry picked from commit 4561307a27e07e37319fdf993c37f2c1b85ee3e9)
2009-01-06mesa: more re-org of variable declarations in glsl compilerBrian Paul
(cherry picked from commit 49543d7177fabc848822431891266e33bc13c818)
2009-01-06mesa: more comments, clean upBrian Paul
(cherry picked from commit a1229cc9e7c78c59cad8d0df30b1f28d9bc81faf)
2009-01-06mesa: added comments, remove unused codeBrian Paul
(cherry picked from commit a66ff046cc169c6479b00b1e7fc5d87b93ad60ed)
2009-01-06mesa: checkpoint: handle uniform vars in _slang_gen_var_decl()Brian Paul
This allows uniform declarations with scalar/array initializers. The code is rough though, and will be cleaned up. (cherry picked from commit aa1b90463676ea71f24c1956dcf51deec1bf664c)
2009-01-06mesa: place glsl constant arrays in constant memoryBrian Paul
For example, a declaration like const float[3] xxx = float[3](1.1, 2.2, 3.3); will place the array in the constant buffer whereas a regular, non-const array would be placed in the temporary register file. Next up: do the same thing for uniform arrays.
2009-01-06mesa: remove old size=4 limitBrian Paul
(cherry picked from commit 0da44c62cc91c60d392f6e57aa047473b67ffb9b)
2009-01-06mesa: code clean-up in glsl compilerBrian Paul
(cherry picked from commit d4be09fb2b4a2a45a95a388f536aee566e05f96a)
2009-01-06mesa: remove unneeded swizzle init code in glsl compilerBrian Paul
(cherry picked from commit 240e211c711b0ebfe6c3daa6cb70a3fa8fc8b656)
2009-01-06mesa: disable glsl debug outputBrian Paul
(cherry picked from commit 4d49fc83f11ec2f333e06e94af5ac0d24b93caa8)
2009-01-06mesa: remove unused varpool code in glsl compilerBrian Paul
(cherry picked from commit 81253be3347312eb7539eb61ee9362f76370eba7)
2009-01-06mesa: basic array constructors work nowBrian Paul
For example: float[3] xxx = float[3](1.1, 2.2, 3.3); Optimizations for const-qualified arrays next. (cherry picked from commit 5c0c5e5af9c72c170991f48628673faba85bc6f4)