fix(renderer): 修正命令队列执行时的错误信息文本
将错误信息从"CommandQueue::execute: commandList 为空"改为更符合中文习惯的"命令队列::执行::命令列表"
This commit is contained in:
parent
79e939ce5e
commit
4a902134dc
|
|
@ -464,7 +464,7 @@ void CommandQueue::updateGlobalUBO(const Mat4 &viewProjection, float deltaTime,
|
|||
|
||||
void CommandQueue::execute(uint32_t frameIndex) {
|
||||
if (!commandList_) {
|
||||
E2D_ERROR("CommandQueue::execute: commandList 为空");
|
||||
E2D_ERROR("命令队列::执行::命令列表");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue