mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 20:58:54 +00:00
Merge pull request #11550 from iwubcode/set_common_samplers_count
VideoCommon: add constant value for maximum number of pixel samplers
This commit is contained in:
commit
f37113204f
18 changed files with 62 additions and 36 deletions
|
@ -23,6 +23,7 @@ add_library(videocommon
|
|||
CommandProcessor.cpp
|
||||
CommandProcessor.h
|
||||
ConstantManager.h
|
||||
Constants.h
|
||||
CPMemory.cpp
|
||||
CPMemory.h
|
||||
CPUCull.cpp
|
||||
|
|
11
Source/Core/VideoCommon/Constants.h
Normal file
11
Source/Core/VideoCommon/Constants.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
// Copyright 2023 Dolphin Emulator Project
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
namespace VideoCommon
|
||||
{
|
||||
constexpr u32 MAX_PIXEL_SHADER_SAMPLERS = 8;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue