Run clang format once more

This commit is contained in:
emufan4568 2022-08-29 21:37:38 +03:00
parent 48d5ec5c00
commit 926d604312
2 changed files with 3 additions and 4 deletions

View File

@ -146,8 +146,7 @@ RasterizerOpenGL::RasterizerOpenGL(Frontend::EmuWindow& emu_window)
if (IsVendorIntel()) {
shader_program_manager = std::make_unique<ShaderProgramManager>(emu_window, false);
} else {
shader_program_manager =
std::make_unique<ShaderProgramManager>(emu_window, false);
shader_program_manager = std::make_unique<ShaderProgramManager>(emu_window, false);
}
#else
shader_program_manager = std::make_unique<ShaderProgramManager>(emu_window, !GLES);
@ -629,7 +628,7 @@ bool RasterizerOpenGL::Draw(bool accelerate, bool is_indexed) {
};
const auto BindCubeFace = [&](GLuint& target, Pica::TexturingRegs::CubeFace face,
Pica::Texture::TextureInfo& info) {
Pica::Texture::TextureInfo& info) {
info.physical_address = regs.texturing.GetCubePhysicalAddress(face);
Surface surface = res_cache.GetTextureSurface(info);

View File

@ -5,9 +5,9 @@
#pragma once
#include <atomic>
#include <functional>
#include <iostream>
#include <memory>
#include <functional>
#include "core/frontend/emu_window.h"
namespace Frontend {