Age | Commit message (Collapse) | Author |
|
|
|
|
|
It looks like Windows does not like filenames ending with a dot,
in effect renaming it to 'mms-config'.
|
|
|
|
GLSL sampler variables indicate which texture unit to use for TEX instructions.
Previously, this was baked into the fragment/vertex program and couldn't be
readily changed once set.
Now, SamplerUnits[] array indicates which texture unit is to be used for
each sampler variable. These values are set with glUniform1i().
This is extra state that must be passed to the fragment/vertex program
executor at runtime.
|
|
|
|
Contains the normalized fragment position within a point sprite.
|
|
|
|
|
|
|
|
|
|
of -I flags.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
exp() was using __asm float_exp (OPCODE_EXP) but that computes base two, not e.
See bug 10907.
|
|
|
|
|
|
|
|
substitution.
We had been taking a short-cut w/ asm inlines by just using parameters in order
rather than doing full formal parameter -> actual argument substitution like
ordinary inlined function calls. This worked in all cases but one: mix() in
which the parameters were used in a different order.
This fixes bug 10821.
|
|
|
|
produced by vertex shader.
|
|
|
|
|
|
|
|
|
|
|
|
Instead of doing intricate malloc/free tracking during compiling, allocate
everything (which would be discarded after compiling) from a pool that can
be freed en masse when done.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
what's expected.
|
|
|