Skip to content

Commit

Permalink
stubs: add header includes to stubs
Browse files Browse the repository at this point in the history
Fixes: 790e3c7
  • Loading branch information
haasn committed Feb 19, 2023
1 parent ac47b83 commit 2c946e6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/d3d11/stubs.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
#include "../common.h"
#include "log.h"

#include <libplacebo/d3d11.h>

const struct pl_d3d11_params pl_d3d11_default_params = { PL_D3D11_DEFAULTS };

pl_d3d11 pl_d3d11_create(pl_log log, const struct pl_d3d11_params *params)
Expand Down
2 changes: 2 additions & 0 deletions src/opengl/stubs.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
#include "../common.h"
#include "log.h"

#include <libplacebo/opengl.h>

const struct pl_opengl_params pl_opengl_default_params = {0};

pl_opengl pl_opengl_create(pl_log log, const struct pl_opengl_params *params)
Expand Down
2 changes: 2 additions & 0 deletions src/vulkan/stubs.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
#include "../common.h"
#include "log.h"

#include <libplacebo/vulkan.h>

const struct pl_vk_inst_params pl_vk_inst_default_params = {0};
const struct pl_vulkan_params pl_vulkan_default_params = { PL_VULKAN_DEFAULTS };

Expand Down

0 comments on commit 2c946e6

Please sign in to comment.