clear up a minor inconsistency in default effect naming

This commit is contained in:
jp9000 2013-12-22 01:33:11 -07:00
parent cdeb81e3bf
commit bd47d9fe74
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ technique DrawRGB
}
}
technique DrawYUVToRGB
technique DrawYUV
{
pass
{

View File

@ -440,7 +440,7 @@ static void obs_source_draw_texture(texture_t tex, struct source_frame *frame)
{
effect_t effect = obs->video.default_effect;
bool yuv = is_yuv(frame->format);
const char *type = yuv ? "DrawYUVToRGB" : "DrawRGB";
const char *type = yuv ? "DrawYUV" : "DrawRGB";
technique_t tech;
eparam_t param;