The open imaging DSP library
Loading...
Searching...
No Matches
lua.h
1/* SPDX-License-Identifier: Apache-2.0 */
2
3#ifndef LUA_MPIX_H
4#define LUA_MPIX_H
5
6#include <lua.h>
7#include <mpix/types.h>
8
10#define LUA_MPIX_PIPELINE_SIZE 32
11
13int luaopen_mpix(lua_State *L);
14
16void lua_mpix_set_image(struct mpix_image *img);
17
19int lua_mpix_hooks(struct mpix_image *img, struct mpix_palette *palette);
20
22int32_t *lua_mpix_get_pipeline(void);
23
25int32_t *lua_mpix_get_ctrls(void);
26
28void lua_mpix_set_stats(struct mpix_stats *stats);
29
30#endif
Represent the image currently being processed.
Definition types.h:164
Definition types.h:190
Definition types.h:198