Home
last modified time | relevance | path

Searched refs:GLSLF (Results 1 – 6 of 6) sorted by relevance

/third_party/ffmpeg/libavfilter/
Dvf_avgblur_vulkan.c120 GLSLF(0, #define FILTER_RADIUS (%i) ,s->size_x - 1);
130 GLSLF(1, size = imageSize(output_img[%i]); ,i);
133 GLSLF(2, distort(pos, %i); ,i);
135 GLSLF(2, vec4 res = texture(input_img[%i], pos); ,i);
136 GLSLF(2, imageStore(output_img[%i], pos, res); ,i);
163 GLSLF(0, #define FILTER_RADIUS (%i) ,s->size_y - 1);
173 GLSLF(1, size = imageSize(output_img[%i]); ,i);
176 GLSLF(2, distort(pos, %i); ,i);
178 GLSLF(2, vec4 res = texture(input_img[%i], pos); ,i);
179 GLSLF(2, imageStore(output_img[%i], pos, res); ,i);
Dvf_scale_vulkan.c201 GLSLF(1, vec2 in_d = vec2(%i, %i); ,in->width, in->height);
202 GLSLF(1, vec2 c_r = vec2(%i, %i) / in_d; ,crop_w, crop_h);
203 GLSLF(1, vec2 c_o = vec2(%i, %i) / in_d; ,crop_x,crop_y);
208 GLSLF(1, size = imageSize(output_img[%i]); ,i);
213 GLSLF(2, vec4 res = scale_bilinear(%i, pos, c_r, c_o); ,i);
214 GLSLF(2, imageStore(output_img[%i], pos, res); ,i);
221 GLSLF(1, res = rgb2yuv(res, %i); ,s->out_range == AVCOL_RANGE_JPEG);
Dvf_chromaber_vulkan.c143 GLSLF(1, size = imageSize(output_img[%i]); ,i);
145 GLSLF(2, distort_chroma(%i, size, pos); ,i);
148 GLSLF(2, res = texture(input_img[%i], npos); ,i);
149 GLSLF(2, imageStore(output_img[%i], pos, res); ,i);
Dvulkan.h40 #define GLSLF(N, S, ...) av_bprintf(&shd->src, C(N, S), __VA_ARGS__) macro
Dvf_overlay_vulkan.c155 GLSLF(1, int planes = %i; ,planes);
Dvulkan.c902 GLSLF(0, #version %i ,460); in FN_CREATING()