2016-04-20 23:33:13 +00:00
|
|
|
/*
|
|
|
|
* This file is part of mpv.
|
|
|
|
*
|
|
|
|
* mpv is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* mpv is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MP_GL_USER_SHADERS_H
|
|
|
|
#define MP_GL_USER_SHADERS_H
|
|
|
|
|
|
|
|
#include "utils.h"
|
2017-08-04 17:09:46 +00:00
|
|
|
#include "ra.h"
|
2016-04-20 23:33:13 +00:00
|
|
|
|
2017-07-10 20:52:39 +00:00
|
|
|
#define SHADER_MAX_HOOKS 16
|
2017-09-27 22:07:42 +00:00
|
|
|
#define SHADER_MAX_BINDS 16
|
2016-05-12 01:34:47 +00:00
|
|
|
#define MAX_SZEXP_SIZE 32
|
|
|
|
|
|
|
|
enum szexp_op {
|
|
|
|
SZEXP_OP_ADD,
|
|
|
|
SZEXP_OP_SUB,
|
|
|
|
SZEXP_OP_MUL,
|
|
|
|
SZEXP_OP_DIV,
|
2019-03-07 15:06:24 +00:00
|
|
|
SZEXP_OP_MOD,
|
2016-06-08 13:05:28 +00:00
|
|
|
SZEXP_OP_NOT,
|
|
|
|
SZEXP_OP_GT,
|
|
|
|
SZEXP_OP_LT,
|
2019-03-07 15:06:24 +00:00
|
|
|
SZEXP_OP_EQ,
|
2016-05-12 01:34:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum szexp_tag {
|
|
|
|
SZEXP_END = 0, // End of an RPN expression
|
|
|
|
SZEXP_CONST, // Push a constant value onto the stack
|
|
|
|
SZEXP_VAR_W, // Get the width/height of a named texture (variable)
|
|
|
|
SZEXP_VAR_H,
|
|
|
|
SZEXP_OP2, // Pop two elements and push the result of a dyadic operation
|
2016-06-08 13:05:28 +00:00
|
|
|
SZEXP_OP1, // Pop one element and push the result of a monadic operation
|
2016-05-16 10:41:55 +00:00
|
|
|
};
|
2016-05-12 01:34:47 +00:00
|
|
|
|
|
|
|
struct szexp {
|
|
|
|
enum szexp_tag tag;
|
|
|
|
union {
|
|
|
|
float cval;
|
|
|
|
struct bstr varname;
|
|
|
|
enum szexp_op op;
|
|
|
|
} val;
|
|
|
|
};
|
2016-04-20 23:33:13 +00:00
|
|
|
|
2017-07-29 18:41:50 +00:00
|
|
|
struct compute_info {
|
|
|
|
bool active;
|
|
|
|
int block_w, block_h; // Block size (each block corresponds to one WG)
|
|
|
|
int threads_w, threads_h; // How many threads form a working group
|
|
|
|
bool directly_writes; // If true, shader is assumed to imageStore(out_image)
|
|
|
|
};
|
|
|
|
|
2017-07-10 23:59:21 +00:00
|
|
|
struct gl_user_shader_hook {
|
2017-07-10 20:52:39 +00:00
|
|
|
struct bstr pass_desc;
|
2016-04-20 23:33:13 +00:00
|
|
|
struct bstr hook_tex[SHADER_MAX_HOOKS];
|
|
|
|
struct bstr bind_tex[SHADER_MAX_BINDS];
|
|
|
|
struct bstr save_tex;
|
|
|
|
struct bstr pass_body;
|
2016-05-12 01:34:47 +00:00
|
|
|
struct gl_transform offset;
|
2019-03-12 02:24:51 +00:00
|
|
|
bool align_offset;
|
2016-05-12 01:34:47 +00:00
|
|
|
struct szexp width[MAX_SZEXP_SIZE];
|
|
|
|
struct szexp height[MAX_SZEXP_SIZE];
|
2016-06-08 13:05:28 +00:00
|
|
|
struct szexp cond[MAX_SZEXP_SIZE];
|
2016-04-20 23:33:13 +00:00
|
|
|
int components;
|
2017-07-29 18:41:50 +00:00
|
|
|
struct compute_info compute;
|
2016-04-20 23:33:13 +00:00
|
|
|
};
|
|
|
|
|
2017-07-10 23:59:21 +00:00
|
|
|
struct gl_user_shader_tex {
|
|
|
|
struct bstr name;
|
2017-08-03 14:08:18 +00:00
|
|
|
struct ra_tex_params params;
|
2017-07-10 23:59:21 +00:00
|
|
|
// for video.c
|
2017-07-30 09:38:52 +00:00
|
|
|
struct ra_tex *tex;
|
2017-07-10 23:59:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Parse the next shader block from `body`. The callbacks are invoked on every
|
|
|
|
// valid shader block parsed.
|
2017-08-03 14:08:18 +00:00
|
|
|
void parse_user_shader(struct mp_log *log, struct ra *ra, struct bstr shader,
|
|
|
|
void *priv,
|
2017-07-10 23:59:21 +00:00
|
|
|
bool (*dohook)(void *p, struct gl_user_shader_hook hook),
|
|
|
|
bool (*dotex)(void *p, struct gl_user_shader_tex tex));
|
2016-04-20 23:33:13 +00:00
|
|
|
|
2016-07-03 17:23:03 +00:00
|
|
|
// Evaluate a szexp, given a lookup function for named textures
|
|
|
|
bool eval_szexpr(struct mp_log *log, void *priv,
|
|
|
|
bool (*lookup)(void *priv, struct bstr var, float size[2]),
|
|
|
|
struct szexp expr[MAX_SZEXP_SIZE], float *result);
|
|
|
|
|
2016-04-20 23:33:13 +00:00
|
|
|
#endif
|