summaryrefslogtreecommitdiff
path: root/src/mesa
AgeCommit message (Collapse)Author
2009-01-06mesa: simplify some glsl variable declaration codeBrian Paul
(cherry picked from commit 05ed9f7fe934249eaa5a16123b5b5f7f62b0ad26)
2009-01-06mesa: glsl clean-upsBrian Paul
(cherry picked from commit 929eb00b32dfea9b1ac58923c88d5573872adea1)
2009-01-06mesa: checkpoint commit of GLSL 1.20 array syntax.Brian Paul
This allows things like float[3] x = float[3](1., 2., 3.); Parsing and AST construction now. Codegen not working yet. (cherry picked from commit 2dc3de016cd0306bf5b492ed781e824864788f11)
2009-01-06mesa: in slang linker, replace assertion with link error when max samplers ↵Brian Paul
exceeded (cherry picked from commit e8f5c1a5e89fe43ddfa277d7392dcaf8ac1d6c88)
2009-01-06mesa: fix conditional in save_Lightfv(), bug 18838Brian
(cherry picked from commit 1e2f57425153d73646fde7c91c16aa5559491556)
2009-01-06mesa: add missing type check for function callsBrian Paul
(cherry picked from commit 001b1cbb0dacf76dd09cda56840c30226abd3534)
2009-01-06mesa: add missing size check for assignment optimizationBrian Paul
(cherry picked from commit aa40de5c6f7f70844d4a4c726456cceaee9f0e4d)
2009-01-06mesa: remove debug codeBrian Paul
(cherry picked from commit fea3a32e17502ac16ec9a12dc9d18742cea2efd5)
2009-01-06mesa: added support for GLSL 1.20 array.length() methodBrian Paul
This is the only method supported in GLSL 1.20 so we take a few short-cuts. (cherry picked from commit 8d95e66cf78921cd067c4bcf6a1053a7ec3a2ed4)
2009-01-06mesa: support for GLSL 1.20 array typesBrian Paul
This allows syntax like "float[8] foo, bar;" (cherry picked from commit 0fab514ff5e7887767936427b5e02b676abebf3a)
2009-01-06mesa: pass shader centroid/invariant info through to the TGSI shaderBrian Paul
(cherry picked from commit c5b52b5e0e6f6e47c3953076fa788921b1c5a5e2)
2009-01-06mesa: add gl_program::Input/OutputFlags[] arrayBrian Paul
These arrays will indicate per-input or per-output options for vertex/fragment programs such as centroid-sampling and invariance. (cherry picked from commit b730d0d3e9b202b17a0815cb820fc9905f35cb98)
2009-01-06mesa: copy centroid/invariance/precision info in parse_init_declarator()Brian Paul
(cherry picked from commit a2037137385671c0673d1de6eb1c36dbd3cd78f3)
2009-01-06mesa: check that varying variable qualifiers agreeBrian Paul
(cherry picked from commit dc1107c08d0ccbeeb063f2e46be598f16cbe9f21)
2009-01-06mesa: copy precision/variant/centroid info in slang_fully_specified_type_copy()Brian Paul
(cherry picked from commit 0e2f757413a68f0edb6643ea23ad8d879d077f11)
2009-01-06mesa: set flags for varying varsBrian Paul
(cherry picked from commit 3197954554bfc492283c7db009d10ab408664cad)
2009-01-06mesa: rename program parameter flags to match other Mesa conventionsBrian Paul
(cherry picked from commit f490ec9797a396da9d182f1ad4393f1c5c2df440)
2009-01-06mesa: copy Flags in _mesa_clone_parameter_list()Brian Paul
(cherry picked from commit 08b825a77179a9e7ed902c9c57387f127cd007bc)
2009-01-06mesa: dump/debug varying vars listBrian Paul
(cherry picked from commit 3f6668a4bf28109eb806be019fb235663572b7da)
2009-01-06mesa: added PROG_PARAM_ bits for invariant, flat/linear interpolationBrian Paul
Plus, update the print/debug code. (cherry picked from commit 777a5c4f2e7c6c6ec0227a239b1af6c6b86dfab2)
2009-01-06mesa: add Flags field to gl_program_parameterBrian Paul
Only one flag defined so far: PROG_PARAM_CENTROID_BIT (cherry picked from commit 0f228d7ab3b7c03328df369b8db50c469ac5dcd6)
2009-01-06mesa: issue error, don't crash, when calling a prototyped, but undefined ↵Brian Paul
function Bug #18659. (cherry picked from commit 4f05893415a2d6f29b29f4daf991ea95a1891a81)
2009-01-06mesa: better variable name: s/aux/store/Brian Paul
(cherry picked from commit b63a31b36f2e1a198c214f41e0518991b1a8fa49)
2009-01-06mesa: minor comment reformatttingBrian Paul
(cherry picked from commit bab4e78734dc462387fea32f0b05103e31f2d6f6)
2009-01-06mesa: glsl compiler debug codeBrian Paul
RETURN0 macro reports file/line before returning zero. (cherry picked from commit bf7f9d2143a892bc11a5e2b84e3d6d3ed69fb5e8)
2009-01-06mesa: rework GLSL array code generationBrian Paul
We now express arrays in terms of indirect addressing. For example: dst = a[i]; becomes: MOV dst, TEMP[1 + TEMP[2].y]; At instruction-emit time indirect addressing is converted into ARL/ ADDR-relative form: ARL ADDR.x, TEMP[2].y; MOV dst, TEMP[1 + ADDR.x]; This fixes a number of array-related issues. Arrays of arrays and complex array/struct nesting works now. There may be some regressions, but more work is coming. (cherry picked from commit ae0ff8097b85d3537a7be1674d55a44a9bd6018e)
2009-01-06mesa: don't realloc instruction buffer so oftenBrian Paul
(cherry picked from commit e709d68d92ef6f2392b118d0a22452e8f4c53e9a)
2009-01-06mesa: updated commentBrian Paul
(cherry picked from commit d9fa9e3290611944d5fd52301645367eeeb24f03)
2009-01-06mesa: fix merge conflict left-oversBrian Paul
2009-01-06mesa: no longer need Writemask field in GLSL IR nodesBrian Paul
The Swizzle and Size fields carry all the info we need now. (cherry picked from commit 80d6379722a1249ce13db79a898d340644936f67)
2009-01-06mesa: revamp GLSL instruction emit codeBrian Paul
This is a step toward better array handling code. In particular, when more than one operand of an instruction uses indirect addressing, we'll need some temporary instructions and registers. By converting IR storage to instruction operands all in one place (emit_instruction()) we can be smarter about this. Also, somewhat better handling of dst register swizzle/writemask handling. This results in tighter writemasks on some instructions which is good for SOA execution. And, cleaner instruction commenting with inst_comment(). Next: remove some more dead code and additional clean-ups... (cherry picked from commit 3a7ed9779b159f9dccbc98d1d556be2cd83cc1fd)
2009-01-06mesa: make writemask_string() non-staticBrian Paul
(cherry picked from commit 610c2461ce0683ca5412e4b2b7a496f67e9d3704) Conflicts: src/mesa/shader/prog_print.c
2009-01-06mesa: remove some do-nothing GLSL codeBrian Paul
(cherry picked from commit 4c167f8fc1e56b6c82d8917c237e70531e3d57b9)
2009-01-06mesa: fix accidental regression in GLSL built-in texture matrix lookupBrian Paul
Was broken by commit 9aca9a4b72b2a7b378e50bd88f9c3324d07375ec. (cherry picked from commit fe984aed5a9ee7c6e000d48a0a584b964fefa848) Conflicts: src/mesa/shader/slang/slang_builtin.c
2009-01-06mesa: remove unused/obsolete __NormalMatrixTranspose matrixBrian Paul
(cherry picked from commit e556cc82f83716a734ed9d76356ba49bb670004f)
2009-01-06mesa: tweak program register printing for RelAddr caseBrian Paul
(cherry picked from commit 557fde9531289b4388a3080b89c2ebaa38abeaee)
2009-01-06mesa: allow relative indexing into all register files and indirect dst ↵Brian Paul
register indexing (cherry picked from commit f4361540f8dd3016571523863b33481cba7a0c07) Conflicts: src/mesa/shader/prog_execute.c
2009-01-06mesa: track initialization status of uniform variables. Plus, asst clean-ups.Brian Paul
(cherry picked from commit 2d76a0d77af7be9539f89cba37ce84338c1cdda4)
2009-01-06mesa: initial support for uniform variable initializers.Brian Paul
This lets one specify initial values for uniforms in the code, avoiding the need to call glUniform() in some cases. (cherry picked from commit 379ff8c9567940ebff44870cf7b0202882445fa6)
2009-01-06mesa: allows 'f' suffix on GLSL float literalsBrian Paul
(cherry picked from commit 80c8017a643dfb655e4e1500e1c57e3908529c27)
2009-01-06mesa: add support for 'centroid' qualifier in GLSL 1.20Brian Paul
(cherry picked from commit 87d1a26ba38e75f6988e094dbfbc0f77c0ae502b) Conflicts: src/mesa/shader/slang/library/slang_vertex_builtin_gc.h
2009-01-06mesa: add support for 'invariant' keyword for GLSL 1.20Brian Paul
(cherry picked from commit 448156f769ebf271a6a8c03c61588c3e6c6363f0) Conflicts: src/mesa/shader/slang/library/slang_vertex_builtin_gc.h
2009-01-06mesa: reformat comments, rewrap lines, etc for a little better readabilityBrian Paul
(cherry picked from commit b632e5aa7f948ed5bbf7104682ec3ee463af4c0a)
2009-01-05scons: 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-18gallium: fix two-sided lighting test in state trackerBrian Paul
This fixes two-sided lighting for vertex shaders.
2008-12-18glsl: Fix handling of nested parens in macro actual arguments.Michal Krol
2008-12-18mesa: Pass the context to query object delete cb to avoid null dereference.Eric Anholt
2008-12-17mesa: choose GLSL vertex shader over ARB/internal vertex program in ↵Brian Paul
get_fp_input_mask() This is a work-around the for the fact that we do fragment shader state validation before vertex shader validation (see comments in state.c) so in get_fp_input_mask() we can't rely on ctx->VertexProgram._Current being up to date yet. This fixes a glean glsl1 test failure.
2008-12-17mesa: fix fixed-function test in get_fp_input_mask() - again.Brian Paul
The problem we're solving only occured when there was a user-defined vertex shader but no fragment shader. Check for that case now. Fixes glean api2 vertex array failure.
2008-12-17mesa: add missing cases for texture array targetsBrian Paul