This file is indexed.

/usr/share/doc/info-beamer/samples/image/node.lua is in info-beamer 1.0~pre3-1build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
8
gl.setup(1024, 768)

image = resource.load_image("beamer.png")

function node.render()
    gl.clear(1,1,1,1)
    util.draw_correct(image, 0, 0, WIDTH, HEIGHT)
end