| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
Oh No! More shader changes!
|
|
|
|
|
|
|
|
|
|
These are not used any more since we moved shader JIT to xbyak.
|
|
|
|
|
|
|
|
This also fixes a long-standing but neverthless harmless memory
corruption bug, whech the padding of the OutputVertex struct would get
corrupted by unused attributes.
|
|
|
|
|
|
|
|
|
|
A few registers had names such as "count" or "number" when they actually
contained the maximum (that is, count - 1). This can easily lead to hard
to notice off by one errors.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This doesn't belong in LoadInputVertex because it also happens for
non-VS invocations. Since it's not used by the JIT it seems adequate to
initialize it in the interpreter which is the only thing that cares
about them.
|
|
|
|
|
|
|
|
|
|
|
|
Currently there's only a single dummy implementation, which will be
split in a following commit.
|
|
|
|
This removes all implicit dependency of ShaderState on global PICA
state.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Lighting LUT Quickfix
|
|
|
|
|
|
* Removes circular dependences (common should not depend on core)
|
|
VideoCore: Make profiling scope more representative
|
|
|
|
VideoCore: Inline IsPicaTracing
|