| Age | Commit message (Collapse) | Author |
|
subchannel is a 3 bit field. So there must not be more than 8 bound engines.
And using a hashmap for up to 8 values is a bit overpowered.
|
|
Blame the subsystems which deserve the blame :)
The updated list is not complete, just the ones I've spotted on random sampling the stack trace.
|
|
GenerateDeclarations()
Using the getter function intended for external code here makes an
unnecessary copy of the already-accessible used_shaders vector.
|
|
filesystem/maxwell_3d: Various changes to boot Project Octopath Traveller
|
|
Added assert for TEXS nodep
|
|
Added better asserts to IPA, Renamed IPA modes to match mesa
|
|
Added FFMA asserts and missing fields
|
|
Unneeded as we already implement it
|
|
Saturate already implemented
|
|
|
|
|
|
|
|
|
|
IpaMode is changed to IpaInterpMode
IpaMode is suppose to be 2 bits not 3
Added IpaSampleMode
Added Saturate
Renamed modes based on
https://github.com/mesa3d/mesa/blob/d27c7918916cdc8092959124955f887592e37d72/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp#L2530
|
|
|
|
The follow-up to e2457418dae19b889b2ad85255bb95d4cd0e4bff, which
replaces most of the includes in the core header with forward declarations.
This makes it so that if any of the headers the core header was
previously including change, then no one will need to rebuild the bulk
of the core, due to core.h being quite a prevalent inclusion.
This should make turnaround for changes much faster for developers.
|
|
|
|
|
|
|
|
|
|
- Use a single cached page map.
- Fix calculation of ending page.
|
|
* Implement BC6H_UF16 & BC6H_SF16
Require by ARMS
* correct coding style
* correct coding style part 2
|
|
core: Make the main System class use the PImpl idiom
|
|
Report correct shader size.
|
|
core.h is kind of a massive header in terms what it includes within
itself. It includes VFS utilities, kernel headers, file_sys header,
ARM-related headers, etc. This means that changing anything in the
headers included by core.h essentially requires you to rebuild almost
all of core.
Instead, we can modify the System class to use the PImpl idiom, which
allows us to move all of those headers to the cpp file and forward
declare the bulk of the types that would otherwise be included, reducing
compile times. This change specifically only performs the PImpl portion.
|
|
Seems like this was an oversee in regards to 1fd979f50a9f4c21fa8cafba7268d959e3076924
It changed GLShader::ProgramCode to a std::vector, so sizeof is wrong.
|
|
|
|
* Implement POPC
* implement invert
|
|
gl_shader_decompiler: Improve IPA for Pass mode with Position attribute.
|
|
|
|
|
|
gpu: Make memory_manager private
|
|
gl_rasterizer: Remove unused variables
|
|
Given std::vector is a type with a non-trivial destructor, this
variable cannot be optimized away by the compiler, even if unused.
Because of that, something that was intended to be fairly lightweight,
was actually allocating 32KB and deallocating it at the end of the
function.
|
|
Makes the class interface consistent and provides accessors for
obtaining a reference to the memory manager instance.
Given we also return references, this makes our more flimsy uses of
const apparent, given const doesn't propagate through pointers in the
way one would typically expect. This makes our mutable state more
apparent in some places.
|
|
|
|
|
|
|
|
|
|
shader_bytecode: fix SEL_IMM bitstring
|
|
debug_utils: Minor individual interface changes
|
|
maxwell3d: Move FinishedPrimitiveBatch event after AcceleratedDrawBatch()
|
|
gl_rasterizer: Correct assertion condition in SyncLogicOpState()
|
|
Quite a bit of these aren't necessary directly within the debug_utils
header and can be removed or included where actually necessary.
|
|
Avoids implicit conversions.
|
|
Ensures that all class members are initialized.
|
|
The start and finish events should likely not be right after one another
like this, otherwise the batch will appear to complete immediately
|
|
|
|
Previously the assert would always be hit, since it was the equivalent
of: array == nullptr, which is never true.
|
|
|