Skip to content

Commit

Permalink
Overexposed Light Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
diegolix29 committed Sep 29, 2024
1 parent 1cbf89f commit baf2fd0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Build and Release

on:
push:
branches: [ "mainBB" ]
branches: [ "Full-BB" ]
pull_request:
branches: [ "*" ]

Expand Down Expand Up @@ -382,7 +382,7 @@ jobs:
path: Shadps4-qt.AppImage

pre-release:
if: github.ref == 'refs/heads/mainBB' && github.event_name == 'push'
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
needs: [get-info, windows-sdl, windows-qt, macos-sdl, macos-qt, linux-sdl, linux-qt]
runs-on: ubuntu-latest
steps:
Expand Down
5 changes: 3 additions & 2 deletions src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,9 @@ const ComputePipeline* PipelineCache::GetComputePipeline() {
}

bool ShouldSkipShader(u64 shader_hash, const char* shader_type) {
static constexpr std::array<u64, 5> skip_hashes = {0xaa9d023d, 0x17a64a21, 0x94ec4dfb,
0xc8854a11, 0x3f1b9738};
static constexpr std::array<u64, 14> skip_hashes = {
0x4899010a, 0xc8854a11, 0xaa9d023d, 0x17a64a21, 0x94ec4dfb, 0xbddb8fc7, 0x733dae6f,
0x9a987165, 0x70ffb249, 0x34e9da69, 0xbfed1ef4, 0x6faab5f9, 0x125a83c1, 0x3f1b9738};
if (std::ranges::contains(skip_hashes, shader_hash)) {
LOG_WARNING(Render_Vulkan, "Skipped {} shader hash {:#x}.", shader_type, shader_hash);
return true;
Expand Down

0 comments on commit baf2fd0

Please sign in to comment.