Browse Source
Merge pull request #964 from Hexagon12/lower-logs
Lowered down the logging for command processor methods
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
4 deletions
-
src/video_core/command_processor.cpp
|
|
|
@ -29,10 +29,10 @@ enum class BufferMethods { |
|
|
|
}; |
|
|
|
|
|
|
|
void GPU::WriteReg(u32 method, u32 subchannel, u32 value, u32 remaining_params) { |
|
|
|
LOG_WARNING(HW_GPU, |
|
|
|
"Processing method {:08X} on subchannel {} value " |
|
|
|
"{:08X} remaining params {}", |
|
|
|
method, subchannel, value, remaining_params); |
|
|
|
LOG_TRACE(HW_GPU, |
|
|
|
"Processing method {:08X} on subchannel {} value " |
|
|
|
"{:08X} remaining params {}", |
|
|
|
method, subchannel, value, remaining_params); |
|
|
|
|
|
|
|
if (method == static_cast<u32>(BufferMethods::BindObject)) { |
|
|
|
// Bind the current subchannel to the desired engine id.
|
|
|
|
|