- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我重构代码以显示多个不同的纹理之前,一切工作正常,但现在我得到的只是黑盒子,它们比它们应该的大小要小,而且显然它们没有任何纹理!我什至没有触摸顶点,我不知道为什么大小会受到影响。
截图(黑色的大框应该已经覆盖了整个屏幕,底部的小方 block 应该更大。不知道是什么影响了它们的大小) :
着色器:(使用前编译)
const val vertexShader_Image = "uniform mat4 u_MVPMatrix;" +
"attribute vec4 a_Position;" +
"attribute vec2 a_texCoord;" +
"varying vec2 v_texCoord;" +
"void main() {" +
" gl_Position = u_MVPMatrix * a_Position;" +
" v_texCoord = a_texCoord;" +
"}"
const val fragmentShader_Image = "precision mediump float;" +
"uniform sampler2D u_texture;" +
"varying vec2 v_texCoord;" +
"void main() {" +
" gl_FragColor = texture2D(u_texture, v_texCoord);" +
"}"
TextureLoader:(对象基本上是 Kotlin 中的一个静态类,如果你不熟悉的话)
object TextureLoader
{
var textures: Map<TextureName, Int> = mutableMapOf()
fun generateTextures(nameBitmapPair: List<Pair<TextureName, Bitmap>>, screenWidth: Int, screenHeight: Int)
{
val textureAmount = nameBitmapPair.size
val mutableTextureMap = mutableMapOf<TextureName, Int>()
if(textureAmount > 31 || textureAmount< 0)
{
throw IllegalStateException("Texture amount is bigger than 31 or smaller than 0. Texture limit for OPEN GL is 31, it can't be bigger than it")
}
val textureHandles = IntArray(textureAmount)
GLES20.glGenTextures(textureAmount, textureHandles, 0)
for (i in 0 until textureAmount)
{
if (textureHandles[i] != 0)
{
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, textureHandles[i])
GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_MIN_FILTER, GLES20.GL_LINEAR)
GLES20.glTexParameteri(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_MAG_FILTER, GLES20.GL_LINEAR)
// Load the bitmap into the bound texture.
GLUtils.texImage2D(GLES20.GL_TEXTURE_2D, 0, nameBitmapPair.get(i).second, 0)
nameBitmapPair.get(i).second.recycle()
mutableTextureMap.put(nameBitmapPair.get(i).first, textureHandles[i])
Timber.i("created new texture, Name = ${nameBitmapPair.get(i).first}, ID = ${textureHandles[i]}")
}
else
{
throw RuntimeException("Error loading texture.")
}
}
textures = mutableTextureMap
}
}
Batcher:(处理 OpenGL 样板代码的类,因此代码库的其余部分不会让任何人眼花缭乱)
class Batcher private constructor()
{
// Store the model matrix. This matrix is used to move models from object space (where each model can be thought
// of being located at the center of the universe) to world space.
private val mtrxModel = FloatArray(16)
// Allocate storage for the final combined matrix. This will be passed into the shader program.
private val mtrxMVP = FloatArray(16)
// Store the projection matrix. This is used to project the scene onto a 2D viewport.
private val mtrxProjection = FloatArray(16)
/* This was my UV array before I refactored the code to add animations. Now it's accessed by the
sprite.animator.getUvCoordinationForCurrentFrame()
private var uvArray = floatArrayOf(
0.0f, 0.0f,
0.0f, 0.20f,
0.20f, 0.20f,
0.20f, 0.0f)
*/
private var uvBuffer: FloatBuffer? = null
private var vertexBuffer: FloatBuffer? = null
private var indices = shortArrayOf(0, 1, 2, 0, 2, 3) // The order of vertexrendering.
private var indicesBuffer: ShortBuffer? = null
// NOTE: companion object is the static class of the Kotlin if you are not familiar with it. It's used to create a singleton here.
companion object
{
private var instance: Batcher? = null
fun getInstance(): Batcher
{
if (instance == null)
{
instance = Batcher()
}
return instance!!
}
}
//Constructor of the Kotlin classes if you aren't familiar with it
init
{
glEnable(GL_BLEND)
// initialize byte buffer for the draw list
indicesBuffer = ByteBuffer.allocateDirect(indices.size * 2)
.order(ByteOrder.nativeOrder())
.asShortBuffer()
indicesBuffer!!.put(indices)
.position(0)
val vertices = floatArrayOf(
0f, 0f, 0f,
0f, 1.0f, 0f,
1.0f, 1.0f, 0f,
1.0f, 0f, 0f)
// The vertex buffer.
vertexBuffer = ByteBuffer.allocateDirect(vertices.size * 4)
.order(ByteOrder.nativeOrder())
.asFloatBuffer()
vertexBuffer!!.put(vertices)
.position(0)
}
fun render(sprites: Sprites)
{
//TODO should these be called on every draw call??
// Get handle to shape's transformation matrix
val u_MVPMatrix = glGetUniformLocation(ShaderHelper.programTexture, "u_MVPMatrix")
val a_Position = glGetAttribLocation(ShaderHelper.programTexture, "a_Position")
val a_texCoord = glGetAttribLocation(ShaderHelper.programTexture, "a_texCoord")
val u_texture = glGetUniformLocation(ShaderHelper.programTexture, "u_texture")
glEnableVertexAttribArray(a_Position)
glEnableVertexAttribArray(a_texCoord)
// "it" here is the currently iterated sprite object
sprites.forEach{
val uvArray = it.animator.getUvCoordinationForCurrentFrame()
if (uvArray != null)
{
updateUVBuffer(uvArray)
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA)
// Matrix op - start
Matrix.setIdentityM(mtrxMVP, 0)
Matrix.setIdentityM(mtrxModel, 0)
Matrix.translateM(mtrxModel, 0, it.x.toFloat(), it.y.toFloat(), 0f)
Matrix.scaleM(mtrxModel, 0, it.scaledFrameWidth.toFloat(), it.scaledFrameHeight.toFloat(), 0f)
if (it.isHorizontallyFlipped)
{
Matrix.translateM(mtrxModel, 0, 1f, 0f, 0f)
Matrix.scaleM(mtrxModel, 0, -1f, 1f, 0f)
}
Matrix.multiplyMM(mtrxMVP, 0, mtrxModel, 0, mtrxMVP, 0)
Matrix.multiplyMM(mtrxMVP, 0, mtrxProjection, 0, mtrxMVP, 0)
// Matrix op - end
// Pass the data to shaders - start
// Prepare the triangle coordinate data
//Binds this vertex's data to a spot in the buffer
glVertexAttribPointer(a_Position, 3, GL_FLOAT, false, 0, vertexBuffer)
// Prepare the texture coordinates
glVertexAttribPointer(a_texCoord, 2, GL_FLOAT, false, 0, uvBuffer)
glUniformMatrix4fv(u_MVPMatrix, 1, false, mtrxMVP, 0)
// Set the sampler texture unit to where we have saved the texture.
// second param is the active texture index
glUniform1i(u_texture, TextureLoader.textures.get(it.textureName)!!)
// Draw the triangles
glDrawElements(GL_TRIANGLES, indices.size, GL_UNSIGNED_SHORT, indicesBuffer)
}
else
{
Timber.w("UV array of the sprite is null, skipping rendering. \nSprite: ${it}")
}
}
}
fun setScreenDimension(screenWidth: Int, screenHeight: Int)
{
Matrix.setIdentityM(mtrxProjection, 0)
Matrix.orthoM(mtrxProjection, 0, 0f, screenWidth.toFloat(), screenHeight.toFloat(), 0f, 0f, 1f)
}
private fun updateUVBuffer(uvArray: FloatArray)
{
uvBuffer = ByteBuffer.allocateDirect(uvArray.size * 4)
.order(ByteOrder.nativeOrder())
.asFloatBuffer()
uvBuffer!!.put(uvArray)
.position(0)
}
最佳答案
要分配给纹理采样器制服的值不是纹理的对象编号。它必须是纹理绑定(bind)到的纹理单元。由于您的纹理绑定(bind)到纹理单元 0 ( GL_TEXTURE0
),因此您需要将 0 分配给纹理采样器制服(默认为 0):glUniform1i(u_texture, TextureLoader.textures.get(it.textureName)!!)
glUniform1i(u_texture, 0)
glBindTexture
将纹理绑定(bind)到指定目标和当前纹理单元。纹理单元可以通过
glActiveTexture
设置.
glActiveTexture(GLES20.GL_TEXTURE0)
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, textureHandles[i])
那么您必须将 0 分配给纹理采样器。但如果你这样做
glActiveTexture(GLES20.GL_TEXTURE1)
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, textureHandles[i])
那么您必须将 1 分配给纹理采样器。
glBindTexture
每次要使用纹理渲染几何时都应该调用它:例如:
glActiveTexture(GLES20.GL_TEXTURE0)
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, TextureLoader.textures.get(it.textureName)!!)
glUniform1i(u_texture, 0)
glDrawElements(GL_TRIANGLES, indices.size, GL_UNSIGNED_SHORT, indicesBuffer)
关于java - OpenGL ES 2 - 不显示纹理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64514271/
我有一个未定义数量的显示上下文,每个都将显示一个纹理。当我调用 glGenTextures 时,我会在所有显示上下文中返回相同的名称。这会起作用吗?即使它们具有相同的名称,它们仍会存储和显示不同的纹理
我在 SVG 中看到过:文本填充是图像而不是颜色;我一直想知道使用 CSS3 是否可以实现这样的事情。 我浏览了整个网络,到目前为止只找到了基本上将图像覆盖在文本上的解决方法(请参阅 this ,这对
我是 WebGL 的新手。 :)我知道顶点数据和纹理不应该经常更新,但是当它们确实发生变化时,首选哪个:- 通过调用 gl.deleteBuffer 销毁先前的缓冲区 (static_draw) 并创
我需要将 GL_RGBA32F 作为内部格式,但我在 OpenGL ES 实现中没有得到它。相反,我只得到 GL_FLOAT 作为纹理数据类型。 OES_texture_float 规范没有说明里面的
当我执行某些几何体的渲染时,我可以在控制台中看到此警告: THREE.WebGLRenderer: Texture is not power of two. Texture.minFilter sho
我正在尝试使用阴影贴图实现阴影,因此我需要将场景渲染到单独的帧缓冲区(纹理)。我无法让它正常工作,因此在剥离我的代码库后,我留下了一组相对简单的指令,这些指令应该将场景渲染到纹理,然后简单地渲染纹理。
我在 XNA 中使用带有自定义着色器的标准 .fbx 导入器。当我使用 BasicEffect 时,.fbx 模型被 UV 正确包裹并且纹理正确。但是,当我使用我的自定义效果时,我必须将纹理作为参数加
如果我创建一个 .PNG 1024 x 1024 的纹理并在中间画一个 124 x 124 的圆,它周围是空的,它使用的 RAM 量是否与我画一个 124 x 的圆一样124 x 124 空间上的 1
我试图在 Android 中绘制一个地球仪,为此我使用了 OpenGL。然而,为了让它更容易理解,我将从制作一个简单的 3D 立方体开始。我使用 Blender 创建我的 3D 对象(立方体),并在我
文本本身的背景图像层是否有任何 JS/CSS 解决方案? 示例 最佳答案 检查这个http://lea.verou.me/2012/05/text-masking-the-standards-way/
非功能代码: if sprite.texture == "texture" { (code) } 当 Sprite 具有特定纹理时,我正在尝试访问 Sprite 的纹理以运行代码。目前纹理仅在我的
我正在尝试学习适用于 iOS 的 SceneKit 并超越基本形状。我对纹理的工作原理有点困惑。在示例项目中,平面是一个网格,并对其应用了平面 png 纹理。你如何“告诉”纹理如何包裹到物体上?在 3
基本上, 这有效: var expl1 = new THREE.ImageUtils.loadTexture( 'images/explodes/expl1.png' ); this.material
我正在尝试将各种场景渲染为一组纹理,每个场景都有自己的纹理到应该绘制的位置...... 问题: 创建 512 个 FBO,每个 FBO 绑定(bind)了 512 个纹理,这有多糟糕。只使用一个 FB
我正在使用文本 protobuf 文件进行系统配置。 我遇到的一个问题是序列化的 protobuf 格式不支持注释。 有没有办法解决? 我说的是文本序列化数据格式,而不是方案定义。 这个问题是有人在某
我想将我的 3D 纹理的初始化从 CPU 移到 GPU。作为测试,我编写了一个着色器将所有体素设置为一个常数值,但纹理根本没有修改。我如何使它工作? 计算着色器: #version 430 layou
我可以像这样用 JavFX 制作一个矩形: Rectangle node2 = RectangleBuilder.create() .x(-100) .
我在 iPhone 上遇到了 openGL 问题,我确信一定有一个简单的解决方案! 当我加载纹理并显示它时,我得到了很多我认为所谓的“色带”,其中颜色,特别是渐变上的颜色,似乎会自动“优化”。 只是为
假设我有一个域类 class Profile{ String name byte[] logo } 和一个 Controller : class ImageController {
我正在开发一款使用 SDL 的 2D 游戏。由于某些系统的 CPU 较弱而 GPU 较强,因此除了普通的 SDL/软件之外,我还有一个使用 OpenGL 的渲染器后端。 渲染器界面的简化版本如下所示:
我是一名优秀的程序员,十分优秀!