• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            黎明的剔透里伸出了你沁清的曖昧

            Graphics|EngineDev|GameDev|2D&3D Art

              C++博客 :: 首頁(yè) :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
              60 隨筆 :: 1 文章 :: 18 評(píng)論 :: 0 Trackbacks

            In OpenGL ES 2.0 glAlphaFunc isn't available, you have to implement it in a fragment shader. There isn't a lot of reference out there for this (not that I could find anyway) so I thought I'd write this up.

            It's actually quite simple to implement a quick alpha test. I needed to be able to cookie cut out sprites and fonts so I simply needed to reject fragments where the alpha value was zero. Here are the guts of a shader to do this:

            #ifdef GL_ES 
            precision highp float;
            #endif 
            uniform sampler2D u_tex0; 
            uniform bool u_alphatestenable; 
            varying vec2 v_texCoord;
            varying vec4 v_color;
            void main(){ 
                //calculate the fragment color based on the texture and the vertex colour
                vec4 basecolor = texture2D( u_tex0, v_texCoord ) * v_color;
            
                //if testing is enabled, check the alpha component and discard if zero      
                if(u_alphatestenable){ 
                    if(basecolor.a == 0.0){ 
                        //throw this fragment away
                        discard;
                    }
                }
                gl_FragColor = basecolor;
            }

             

            You need to set up a uniform variable u_alphatestenable which enables the alpha test. If you want to support different test types ( less than, greater than etc) then you will need two more uniform variables: one for the test type and one for the value to test against.

            int uni_alphatest_enable = glGetUniformLocation(mProgram, "u_alphatestenable"); 
            bool alphateston = true; 
            glUniform1i(uni_alphatest_enabl

             

            note that you shouldn't call glGetUniformLocation every frame, it should be cached somewhere.
            It's quite simple and while you may be thinking oh that is so slow it not that bad. It's faster then the fixed function pipeline which is doing tests for alpha, lights, blend modes etc. If you get paranoid then you can create multiple shaders that support different subsets of features. All you need to be careful of is the cost of calling glSetProgram (to switch shaders) which can be expensive and cause bubbles in the vertex pipeline in the hardware.

            posted on 2012-11-19 22:28 情絕格調(diào)(fresmaster) 閱讀(1573) 評(píng)論(0)  編輯 收藏 引用 所屬分類: GraphicsCodingDocuments
            日韩亚洲欧美久久久www综合网| 色欲综合久久中文字幕网 | 亚洲性久久久影院| 久久精品亚洲男人的天堂| 亚洲欧美一级久久精品| 久久国产免费观看精品3| 久久影视综合亚洲| 国产精品美女久久久久| 午夜视频久久久久一区| 99久久精品费精品国产一区二区| 久久精品国产99久久丝袜| 久久久久人妻一区精品色| 一本久久免费视频| 狠狠色丁香婷婷综合久久来来去| 人妻无码中文久久久久专区| 日韩欧美亚洲国产精品字幕久久久| 国产成人综合久久综合| 亚洲第一极品精品无码久久| 久久久久久国产a免费观看黄色大片| 久久99精品综合国产首页| 久久婷婷成人综合色综合| 久久国产欧美日韩精品免费| 99久久无码一区人妻| 韩国无遮挡三级久久| 久久青青草原精品国产| 久久丫精品国产亚洲av| 久久夜色精品国产亚洲| 亚洲伊人久久成综合人影院| 久久人人爽人人澡人人高潮AV| 国产一区二区精品久久凹凸| 日本精品久久久中文字幕| 久久99精品国产一区二区三区| 国产精品久久波多野结衣| 久久99国产精品尤物| 精品久久无码中文字幕| 青青草国产成人久久91网| 久久综合狠狠综合久久激情 | 色噜噜狠狠先锋影音久久| 精品久久人人爽天天玩人人妻| 青青热久久国产久精品| 久久人做人爽一区二区三区|