嘿,我目前在使用glBlendFunc
爲bleding不同勢着色器,但OpenGL的一個系統,我想這樣做獲取當前片段顏色
fragColor = currentColor * lightAmount;
我試圖用gl_Color
但其depricated和我的引擎不讓我使用它。
嘿,我目前在使用glBlendFunc
爲bleding不同勢着色器,但OpenGL的一個系統,我想這樣做獲取當前片段顏色
fragColor = currentColor * lightAmount;
我試圖用gl_Color
但其depricated和我的引擎不讓我使用它。
根據this document,片段着色器中沒有片段顏色的內置訪問。 你可以做的是渲染你的先前的通行證在另一個紋理,發送這些紋理到GPU(作爲制服),並在你的最後一遍進行混合。
不,我需要分配給fragColor,因爲我使用GLSL 330,如果我只是將fragColor分配給lightingamount,我場景中的所有東西都變成白色 – Swiftprog
你不能。 OpenGL ES的擴展允許在某些平臺上使用。請參閱以前的類似問題:http://stackoverflow.com/questions/16531185/reading-current-framebuffer。或者,即使它處理深度值,基本上是相同的:http://stackoverflow.com/questions/23362076/opengl-how-to-access-depth-buffer-values-or-gl-fragcoord-z- VS-渲染-d。 –
究竟是什麼'currentColor'和'lightAmount'? – peppe