pub trait GpuProgramTrait: GpuProgramAsAny { }Expand description
A trait for whatever objects a graphics server is using to represent programs.
There are no methods because all interactions with programs are done through the server,
such as with crate::server::GraphicsServer::create_program
and crate::framebuffer::GpuFrameBufferTrait::draw.