aboutsummaryrefslogtreecommitdiffstats
path: root/texture-share-vk-0.2.0-1.rockspec
blob: 66403323d22cd183bb2d4c4f0e7feed9043a351a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package = "texture-share-vk"
version = "0.2.0-1"

source = {
  url = "git+https://git.s-ol.nu/lua-texture-share-vk.git",
  tag = "v0.2.0",
}

description = {
  summary = "A LÖVE library for sharing GPU textures between processes",
  detailed = [[
    This wraps the OpenGL C API of https://github.com/DigitOtter/texture-share-vk
    and allows publishing a LÖVE Canvas object.
  ]],
  homepage = "https://git.s-ol.nu/lua-texture-share-vk/-/",
  license = "MIT",
}

dependencies = {
  -- requires luajit FFI
  "lua == 5.1",
}

build = {
  type = "builtin",
  modules = {
    ["texture-share-vk"] = "texture-share-vk.lua",
  }
}