mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
1073722cdf
This reverts commit 79648e1c24
.
13 lines
281 B
C++
13 lines
281 B
C++
// 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 = 16;
|
|
constexpr u32 MAX_COMPUTE_SHADER_SAMPLERS = 8;
|
|
} // namespace VideoCommon
|