[client] removed use of now removed frame type, fixed #105

This commit is contained in:
Geoffrey McRae 2018-12-11 16:34:41 +11:00
parent a1b1ed0060
commit 7be930a69c
2 changed files with 1 additions and 6 deletions

View File

@ -394,11 +394,6 @@ int frameThread(void * unused)
lgrFormat.bpp = 12;
break;
case FRAME_TYPE_H264:
dataSize = lgrFormat.pitch;
lgrFormat.bpp = 0;
break;
default:
DEBUG_ERROR("Unsupported frameType");
error = true;

View File

@ -98,7 +98,7 @@ uniform sampler2D sampler1;\
\
void main()\
{\
color = texture(sampler1, uv);\
color = texture(sampler1, uv) * 1.1;\
}\
";