More changes for HDR support with kernel 5.12

Support for LUTs
Removed default PIP witch cuvid
This commit is contained in:
jojo61
2021-03-16 09:40:08 +01:00
parent c09bad125d
commit 891d432536
7 changed files with 386 additions and 200 deletions

View File

@@ -123,17 +123,17 @@ static const struct gl_vao_entry vertex_vao[] = {
char sh[SHADER_LENGTH];
char shv[SHADER_LENGTH];
GL_init()
void GL_init()
{
sh[0] = 0;
}
GLV_init()
void GLV_init()
{
shv[0] = 0;
}
pl_shader_append(const char *fmt, ...)
void pl_shader_append(const char *fmt, ...)
{
char temp[1000];
va_list ap;
@@ -148,7 +148,7 @@ pl_shader_append(const char *fmt, ...)
}
pl_shader_append_v(const char *fmt, ...)
void pl_shader_append_v(const char *fmt, ...)
{
char temp[1000];
va_list ap;