使用Haskell GLUT绑定实现透明度/Alpha

3
使用Haskell GLUT绑定,我修改了Hello World示例两个方面:
  1. initialDisplayMode添加WithAlphaComponent
  2. 将颜色更改为Color4,不透明度为0.5
我期望它显示一个半透明的白色正方形,并显示背景为红色。但它显示一个实心的白色正方形,就好像忽略了不透明度。我无法弄清楚为什么不起作用?
import Graphics.UI.GLUT

display :: DisplayCallback
display = do
   -- clear all pixels
   clear [ ColorBuffer ]

   -- draw white polygon (rectangle) with corners at
   -- (0.25, 0.25, 0.0) and (0.75, 0.75, 0.0)

   -- CHANGE #2
   color (Color4 1.0 1.0 (1.0 :: GLfloat) 0.5)

   -- resolve overloading, not needed in "real" programs
   let vertex3f = vertex :: Vertex3 GLfloat -> IO ()
   renderPrimitive Polygon $ mapM_ vertex3f [
      Vertex3 0.25 0.25 0.0,
      Vertex3 0.75 0.25 0.0,
      Vertex3 0.75 0.75 0.0,
      Vertex3 0.25 0.75 0.0]

   -- don't wait!
   -- start processing buffered OpenGL routines
   flush

myInit :: IO ()
myInit = do
   -- select clearing color
   clearColor $= Color4 0.7 0 0 0

   -- initialize viewing values
   matrixMode $= Projection
   loadIdentity
   ortho 0 1 0 1 (-1) 1

-- Declare initial window size, position, and display mode (single buffer and
-- RGBA). Open window with "hello" in its title bar. Call initialization
-- routines. Register callback function to display graphics. Enter main loop and
-- process events.
main :: IO ()
main = do
   _ <- getArgsAndInitialize
   -- CHANGE #1
   initialDisplayMode $= [ SingleBuffered, RGBMode, WithAlphaComponent ]
   initialWindowSize $= Size 250 250
   initialWindowPosition $= Position 100 100
   _ <- createWindow "hello"
   myInit
   displayCallback $= display
   mainLoop

3
你可能需要启用 alpha 混合。在 C 语言中,可以使用 glEnable(GL_BLEND) 实现。不确定在 Haskell 中应该如何操作。 - Nico Schertler
1个回答

3

这段内容摘自Alpha.hs示例代码。

-- Initialize alpha blending function.
myInit :: IO ()
myInit = do
   blend $= Enabled
   blendFunc $= (SrcAlpha, OneMinusSrcAlpha)
   shadeModel $= Flat
   clearColor $= Color4 0 0 0 0

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接