Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-03-08 | Rework matrix-related code. | Brian | |
GLSL matrices are stored in column-major order while GL_ARB_vertex/fragment_program use row-major. So, need to use STATE_MATRIX_TRANSPOSE for built-in matrices. Unfortunately, this means that the expression M * V isn't very efficient since we need to extract the rows out of M. And that's the typical expression for vertex transformation: gl_ModelViewProjectionMatrix * gl_Position. Solve this inefficiency by looking for M*V expressions and replacing them with V*Transpose(M). Also, add support for GLSL 1.20's MatrixTranspose, Inverse and InverseTranspose matrices. | |||
2007-03-07 | regenerated | Brian | |
2007-03-07 | fix broken __postDecr() | Brian | |
2007-03-06 | more integer arithmetic updates | Brian | |
2007-03-06 | fix some int arithmetic problems | Brian | |
2007-02-03 | minor tweaks to distance() funcs | Brian | |
2007-02-02 | remove slang_builtin_vec4.gc | Brian | |
2007-02-02 | remove slang_builtin_vec4.gc | Brian | |
2007-01-31 | New asm instruction and IR_CLAMP node type to allow clamping to [0,1] with ↵ | Brian | |
instruction saturate-write option. Not finished yet. | |||
2007-01-28 | noise functions | Brian | |
2007-01-28 | implement mix() with LRP instruction | Brian | |
2007-01-20 | Reimplement && and || to do short-circuit evaluation. | Brian | |
Improved shader error handling. | |||
2007-01-20 | rewrite more __postIncr functions | Brian | |
2007-01-19 | Rewrite normalize(vec3/vec4) to use one less register. | Brian | |
2007-01-19 | print error msg when there's a problem | Brian | |
2007-01-19 | remove stray tab | Brian | |
2007-01-19 | change while-loop to create new scope for loop body, per spec | Brian | |
2007-01-18 | rewrite a bunch of assignment operators (like +=) | Brian | |
2007-01-17 | rewrite additional matrix-related functions to reduce register needs | Brian | |
2007-01-17 | rewrite mat4 * mat4 operator to use fewer temps | Brian | |
2007-01-17 | rewrite matrix constructors | Brian | |
2007-01-17 | Rewrite a bunch of constructors. It's now important that the first | Brian | |
constructor for any given type be the one that takes the most parameters as this is the constructor that'll be used when there's no perfect match to the caller's arguments. See the _slang_adapt_call() function for details. | |||
2007-01-16 | comments | Brian | |
2007-01-16 | implement logical or, xor, not | Brian | |
2007-01-16 | some additional vector constructors | Brian | |
2007-01-15 | Reimplement the post-increment/decrement functions. | Brian | |
Instead of defining functions with an extra dummy parameter to distinguish from the pre-incr/decr functions, just use new function names: __postIncr and __postDecr. | |||
2007-01-15 | Implement the ++var and --var operators, improve some constructors. | Brian | |
2007-01-13 | added another vec4 constructor, updated += operator | Brian | |
2007-01-11 | new vec3 constructor, replace float_add w/ vec4_add | Brian | |
2007-01-09 | remove old comment | Brian | |
2007-01-09 | Vertex program texture samplers done, but untested (need to add TEX/TXB to | Brian | |
the T&L vertex program interpreter). | |||
2007-01-09 | Implement shadow samplers and dFdx(), dFdy() code generation. | Brian | |
2007-01-08 | implement biased texture functions | Brian | |
2007-01-08 | update texture1D functions | Brian | |
2007-01-08 | Implement projective texture sampling, 3D textures. Disable some debug output. | Brian | |
2007-01-05 | Checkpoint glsl compiler work: sampler uniforms now implemented, linked ↵ | Brian | |
properly. | |||
2007-01-04 | initial code to get texture sampling limping along | Brian | |
2007-01-04 | Fix some incorrect GL error values. Reorganize _mesa_compile_shader() code. | Brian | |
2006-12-21 | chmod a-x | Brian | |
2006-12-21 | checkpoint: pre/post incr/decr operators | Brian | |
2006-12-21 | checkpoint: rewrite vec/mat products | Brian | |
2006-12-21 | checkpoint: matrix/float, unary negation rewrite | Brian | |
2006-12-21 | checkpoint: ivec/int and mat/mat operations | Brian | |
2006-12-21 | checkpoint: more basic math rewritting | Brian | |
2006-12-20 | checkpoint: re-org assignment operator functions | Brian | |
2006-12-20 | checkpoint: more basic math operator re-org | Brian | |
2006-12-20 | Checkpoing: re-organization of basic arithmetic functions. | Brian | |
2006-12-20 | Uniform matrix support. | Brian | |
Implement _mesa_uniform_matrix() Support for program parameters/uniforms with more than 4 elements. Store 4x4 matrices in column-major order in registers. Update mat mul built-in functions accordingly. | |||
2006-12-19 | rewrite +=, -= etc for floats | Brian | |
2006-12-18 | comments | Brian | |