2007-01-31 |
Brian | New asm instruction and IR_CLAMP node type to allow... |
commit | commitdiff | tree | snapshot |
2007-01-31 |
Brian | allow fragment-only and vertex-only programs |
commit | commitdiff | tree | snapshot |
2007-01-30 |
Brian | fix _mesa_get_uniform_location() so it uses the given... |
commit | commitdiff | tree | snapshot |
2007-01-29 |
Brian | noise() works now |
commit | commitdiff | tree | snapshot |
2007-01-29 |
Brian | noise functions |
commit | commitdiff | tree | snapshot |
2007-01-29 |
Brian | simple noise test |
commit | commitdiff | tree | snapshot |
2007-01-28 |
Brian | combine emit_unop(), emit_binop(), emit_triop() into... |
commit | commitdiff | tree | snapshot |
2007-01-28 |
Brian | implement mix() with LRP instruction |
commit | commitdiff | tree | snapshot |
2007-01-28 |
Brian | Lots of vartable clean-ups, fixes. Report an error... |
commit | commitdiff | tree | snapshot |
2007-01-28 |
Brian | minor clean-ups |
commit | commitdiff | tree | snapshot |
2007-01-28 |
Brian | minor updates |
commit | commitdiff | tree | snapshot |
2007-01-28 |
Brian | Clean-up of var/temp allocation function parameters. |
commit | commitdiff | tree | snapshot |
2007-01-28 |
Brian | Improved register allocation: allow four 'float' vars... |
commit | commitdiff | tree | snapshot |
2007-01-25 |
Brian | asst fixes, tranpose span->varying array indexes |
commit | commitdiff | tree | snapshot |
2007-01-25 |
Brian | fixes, clean-ups, transpose span->varying array indexing |
commit | commitdiff | tree | snapshot |
2007-01-25 |
Brian | new comments, ideas |
commit | commitdiff | tree | snapshot |
2007-01-24 |
Brian | remove some parenthesis |
commit | commitdiff | tree | snapshot |
2007-01-24 |
Brian | use FRAG_BIT_TEX() |
commit | commitdiff | tree | snapshot |
2007-01-24 |
Brian | fix varying interpolation |
commit | commitdiff | tree | snapshot |
2007-01-24 |
Brian | only setup varying vars that will be used |
commit | commitdiff | tree | snapshot |
2007-01-24 |
Brian | added FRAG_BIT_TEX() and FRAG_BIT_VAR() macros |
commit | commitdiff | tree | snapshot |
2007-01-24 |
Brian | updated comment |
commit | commitdiff | tree | snapshot |
2007-01-24 |
Brian | indicate which opcodes are used by Mesa GLSL, updated... |
commit | commitdiff | tree | snapshot |
2007-01-23 |
Brian | fix g++ warnings/errors |
commit | commitdiff | tree | snapshot |
2007-01-21 |
Brian | added shading.html link |
commit | commitdiff | tree | snapshot |
2007-01-20 |
Brian | Added a page with shading language status, tips, etc. |
commit | commitdiff | tree | snapshot |
2007-01-20 |
Brian | Add a simple mechanism for annotating instructions... |
commit | commitdiff | tree | snapshot |
2007-01-20 |
Brian | optimization: emit MAD instructions when possible |
commit | commitdiff | tree | snapshot |
2007-01-20 |
Brian | remove unused swizzle parameter to -storage_to_src_reg() |
commit | commitdiff | tree | snapshot |
2007-01-20 |
Brian | Initial implementation of OPCODE_IF/ELSE/ENDIF instruct... |
commit | commitdiff | tree | snapshot |
2007-01-20 |
Brian | Reimplement && and || to do short-circuit evaluation. |
commit | commitdiff | tree | snapshot |
2007-01-20 |
Brian | rewrite more __postIncr functions |
commit | commitdiff | tree | snapshot |
2007-01-19 |
Brian | Implement do/while loops. Replace IR_CJUMP with IR_CJU... |
commit | commitdiff | tree | snapshot |
2007-01-19 |
Brian | Rewrite normalize(vec3/vec4) to use one less register. |
commit | commitdiff | tree | snapshot |
2007-01-19 |
Brian | report error message when something fails |
commit | commitdiff | tree | snapshot |
2007-01-19 |
Brian | print error msg when there's a problem |
commit | commitdiff | tree | snapshot |
2007-01-19 |
Brian | remove stray tab |
commit | commitdiff | tree | snapshot |
2007-01-19 |
Brian | Implement fragment discard/kill. |
commit | commitdiff | tree | snapshot |
2007-01-19 |
Brian | change while-loop to create new scope for loop body... |
commit | commitdiff | tree | snapshot |
2007-01-19 |
Brian | Implement constant sharing so that 4 float constants... |
commit | commitdiff | tree | snapshot |
2007-01-19 |
Brian | _mesa_add_unnamed_constant() now tries to re-use consta... |
commit | commitdiff | tree | snapshot |
2007-01-18 |
Brian | Reimplement code for swizzling so that expressions... |
commit | commitdiff | tree | snapshot |
2007-01-18 |
Brian | rewrite a bunch of assignment operators (like +=) |
commit | commitdiff | tree | snapshot |
2007-01-18 |
Brian | remove debug code |
commit | commitdiff | tree | snapshot |
2007-01-18 |
Brian | remove swizzle param from new_var() |
commit | commitdiff | tree | snapshot |
2007-01-18 |
Brian | rewrite additional matrix-related functions to reduce... |
commit | commitdiff | tree | snapshot |
2007-01-18 |
Brian | rewrite mat4 * mat4 operator to use fewer temps |
commit | commitdiff | tree | snapshot |
2007-01-18 |
Brian | do bounds check in _slang_push_var_table(), added comment |
commit | commitdiff | tree | snapshot |
2007-01-18 |
Brian | rewrite matrix constructors |
commit | commitdiff | tree | snapshot |
2007-01-18 |
Brian | handle var size > 4 in _slang_pop_var_table() |
commit | commitdiff | tree | snapshot |
2007-01-17 |
Brian | minor fprintf() change |
commit | commitdiff | tree | snapshot |
2007-01-17 |
Brian | Rewrite a bunch of constructors. It's now important... |
commit | commitdiff | tree | snapshot |
2007-01-17 |
Brian | _slang_gen_function_call_name() now tries to adapt... |
commit | commitdiff | tree | snapshot |
2007-01-17 |
Brian | New _slang_adapt_call() function. |
commit | commitdiff | tree | snapshot |
2007-01-17 |
Brian | code clean-up, re-org. Added IR_F_TO_I support. |
commit | commitdiff | tree | snapshot |
2007-01-17 |
Brian | added IR_F_TO_I, update comments |
commit | commitdiff | tree | snapshot |
2007-01-17 |
Brian | Added OPCODE_INT to convert 4 floats to 4 ints. |
commit | commitdiff | tree | snapshot |
2007-01-17 |
Brian | add texturing, other options |
commit | commitdiff | tree | snapshot |
2007-01-17 |
Brian | Fix/clean-up a number of things related to variable... |
commit | commitdiff | tree | snapshot |
2007-01-17 |
Brian | Implement codegen for the selection operator ( b ?... |
commit | commitdiff | tree | snapshot |
2007-01-16 |
Brian | fix typo |
commit | commitdiff | tree | snapshot |
2007-01-16 |
Brian | draw a box, press 'a' to animate |
commit | commitdiff | tree | snapshot |
2007-01-16 |
Brian | added some VerteAttrib funcs |
commit | commitdiff | tree | snapshot |
2007-01-16 |
Brian | Added toyball and bumpmap tests using shaders from... |
commit | commitdiff | tree | snapshot |
2007-01-16 |
Brian | when automatically binding vertex attributes, start... |
commit | commitdiff | tree | snapshot |
2007-01-16 |
Brian | remove dead code |
commit | commitdiff | tree | snapshot |
2007-01-16 |
Brian | comments |
commit | commitdiff | tree | snapshot |
2007-01-16 |
Brian | implement logical or, xor, not |
commit | commitdiff | tree | snapshot |
2007-01-16 |
Brian | some additional vector constructors |
commit | commitdiff | tree | snapshot |
2007-01-16 |
Brian | fix _slang_gen_subscript() for the case when a simple... |
commit | commitdiff | tree | snapshot |
2007-01-16 |
Brian | Use arrow keys to pan and z/Z to zoom in/out to explore... |
commit | commitdiff | tree | snapshot |
2007-01-16 |
Brian | Added new directory of GL shading language demos: glsl |
commit | commitdiff | tree | snapshot |
2007-01-15 |
Brian | Reimplement the post-increment/decrement functions. |
commit | commitdiff | tree | snapshot |
2007-01-15 |
Brian | Implement the ++var and --var operators, improve some... |
commit | commitdiff | tree | snapshot |
2007-01-15 |
Brian | added vec3 constructor code |
commit | commitdiff | tree | snapshot |
2007-01-15 |
Brian | added IR_ELEMENT |
commit | commitdiff | tree | snapshot |
2007-01-15 |
Brian | checkpoint: ++, -- and && operators |
commit | commitdiff | tree | snapshot |
2007-01-15 |
Brian | Redo the way array indexes are handled. Resolve storag... |
commit | commitdiff | tree | snapshot |
2007-01-15 |
Brian | remove old globals |
commit | commitdiff | tree | snapshot |
2007-01-15 |
Brian | comments |
commit | commitdiff | tree | snapshot |
2007-01-15 |
Brian | Move some global vars into slang_assemble_ctx. |
commit | commitdiff | tree | snapshot |
2007-01-15 |
Brian | fix the subassig, mulassign and divassign cases |
commit | commitdiff | tree | snapshot |
2007-01-15 |
Brian | clean-up slang_allocate_storage() |
commit | commitdiff | tree | snapshot |
2007-01-13 |
Brian | added glUniform1fv_func, glUniform2fv_func |
commit | commitdiff | tree | snapshot |
2007-01-13 |
Brian | Rework code related to temp register allocation, both... |
commit | commitdiff | tree | snapshot |
2007-01-13 |
Brian | slang_variable_scope now stores array of pointers to... |
commit | commitdiff | tree | snapshot |
2007-01-13 |
Brian | added another vec4 constructor, updated += operator |
commit | commitdiff | tree | snapshot |
2007-01-11 |
Brian | Fix a problem with inlined "return" statements. Make... |
commit | commitdiff | tree | snapshot |
2007-01-11 |
Brian | disable some code that'll eventually go away |
commit | commitdiff | tree | snapshot |
2007-01-11 |
Brian | new vec3 constructor, replace float_add w/ vec4_add |
commit | commitdiff | tree | snapshot |
2007-01-11 |
Brian | tweak output |
commit | commitdiff | tree | snapshot |
2007-01-10 |
Brian | checkpoint: codegen for global vars/constants now working |
commit | commitdiff | tree | snapshot |
2007-01-10 |
Brian | checkpoint: codegen for global vars w/ initializers |
commit | commitdiff | tree | snapshot |
2007-01-10 |
Brian | assorted code clean-ups |
commit | commitdiff | tree | snapshot |
2007-01-10 |
Brian | fix size bug in _mesa_add_attribute() |
commit | commitdiff | tree | snapshot |
2007-01-10 |
Brian | simplify _mesa_add_state_reference() |
commit | commitdiff | tree | snapshot |
2007-01-10 |
Brian | Update _save_VertexAttrib() functions for non-aliasing... |
commit | commitdiff | tree | snapshot |
2007-01-10 |
Brian | get rid of STATE_USER_ATTRIB/STATE_AUTO_ATTRIB |
commit | commitdiff | tree | snapshot |
2007-01-10 |
Brian | clean up a bunch of program parameter stuff |
commit | commitdiff | tree | snapshot |
2007-01-10 |
Brian | added a few more 2.0 functions |
commit | commitdiff | tree | snapshot |
next |