Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テクスチャードクワッドとテクスチャなしクワッドの両方をレンダリングするにはどうすればよいですか。問題は、テクスチャクワッドを描画した場合、テクスチャクワッドが後に描画されたかどうかが表示されないことです。その逆も同様です。
私はLWJGLを使用しています。
Use glEnable(GL_TEXTURE_2D) before your textured quads, and glDisable(GL_TEXTURE_2D) before your untextured qauds.
glEnable(GL_TEXTURE_2D)
glDisable(GL_TEXTURE_2D)