Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
parent
8abe4b2697
commit
5ec5c5e19b
2 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ std::unique_ptr<WindowAdaptPass> MakeGaussian(const Device& device) {
|
||||||
|
|
||||||
std::unique_ptr<WindowAdaptPass> MakeLanczos(const Device& device) {
|
std::unique_ptr<WindowAdaptPass> MakeLanczos(const Device& device) {
|
||||||
return std::make_unique<WindowAdaptPass>(device, CreateBilinearSampler(),
|
return std::make_unique<WindowAdaptPass>(device, CreateBilinearSampler(),
|
||||||
HostShaders::PRESENT_LANCZO_FRAG);
|
HostShaders::PRESENT_LANCZOS_FRAG);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::unique_ptr<WindowAdaptPass> MakeScaleForce(const Device& device) {
|
std::unique_ptr<WindowAdaptPass> MakeScaleForce(const Device& device) {
|
||||||
|
|
|
@ -62,7 +62,7 @@ std::unique_ptr<WindowAdaptPass> MakeGaussian(const Device& device, VkFormat fra
|
||||||
|
|
||||||
std::unique_ptr<WindowAdaptPass> MakeLanczos(const Device& device, VkFormat frame_format) {
|
std::unique_ptr<WindowAdaptPass> MakeLanczos(const Device& device, VkFormat frame_format) {
|
||||||
return std::make_unique<WindowAdaptPass>(device, frame_format, CreateBilinearSampler(device),
|
return std::make_unique<WindowAdaptPass>(device, frame_format, CreateBilinearSampler(device),
|
||||||
BuildShader(device, PRESENT_LANCZO_FRAG_SPV));
|
BuildShader(device, PRESENT_LANCZOS_FRAG_SPV));
|
||||||
}
|
}
|
||||||
|
|
||||||
std::unique_ptr<WindowAdaptPass> MakeScaleForce(const Device& device, VkFormat frame_format) {
|
std::unique_ptr<WindowAdaptPass> MakeScaleForce(const Device& device, VkFormat frame_format) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue