rename video shaders

videoshaders
Caleb Cornett 2023-01-21 17:04:41 -05:00
parent f3c74aa72a
commit a0729adfa4
3 changed files with 2 additions and 2 deletions

View File

@ -37,8 +37,8 @@ namespace MoonWorks.Graphics
// Check for optional video shaders
string basePath = SDL2.SDL.SDL_GetBasePath();
string videoVertPath = Path.Combine(basePath, "Fullscreen.refresh");
string videoFragPath = Path.Combine(basePath, "YUV2RGBA.refresh");
string videoVertPath = Path.Combine(basePath, "video_fullscreen.refresh");
string videoFragPath = Path.Combine(basePath, "video_yuv2rgba.refresh");
if (File.Exists(videoVertPath) && File.Exists(videoFragPath))
{
ShaderModule videoVertShader = new ShaderModule(this, videoVertPath);