Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
show_image(3)			  Arcan Lua API 		   show_image(3)

NAME
     show_image - Change image opacity to 1.0

SYNOPSIS
     nil
     show_image( vid, time )

DESCRIPTION
     This  is a specific case of the more general blend_image function where the
     opacity argument has been	hard-coded  to	1.0  (opaque,  visible,  default
     blendmode	is  disabled).	This  function	accepts either single VID s or a
     group of VID s packed in a n-indexed table.

EXAMPLE
     function show_image0()
	   a = fill_surface(128, 128, 255, 0, 0);
	   show_image({a,b}, 100);
     end

MISUSE
     function show_image0()
	   a = fill_surface(128, 128, 255, 0, 0);
	   show_image(a, 0.5, 100);
     end

image				   August 2026			   show_image(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=show_image&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help