I am trying to render a set of points using a texture. This works well on some devices, like HTC One V and Samsung S2 (texture is centered around the point) but on others, like HTC 1X, the texture is displayed above the actual point position.
An excerpt of the relevant code:
Vertex Shader:
attribute vec4 vertexPosition;
uniform mat4 modelViewProjectionMatrix;
void main()
{
gl_Position = modelViewProjectionMatrix * vertexPosition;
gl_PointSize = 32.0;
}
Fragment Shader:
precision mediump float;
varying vec2 texCoord;
uniform sampler2D texSampler2D;
uniform vec4 keyColor;
void main()
{
vec4 texColor = texture2D(texSampler2D, gl_PointCoord);
gl_FragColor = keyColor * texColor;
}
Rendering:
// Load the Shader
glUseProgram(mShaderProgramID);
// Load the projection matrix
glUniformMatrix4fv(mMvpMatrixHandle, 1, GL_FALSE, (GLfloat*)&(mProjectionOrtho.data[0]));
// Load the color vector
glUniform4fv(mColorHandle, 1, (GLfloat*)&(color.data[0]));
// Load and enable the vertices
glVertexAttribPointer(mVertexHandle, 3, GL_FLOAT, GL_FALSE, 0, (const GLvoid*) &mVertices[0]);
glEnableVertexAttribArray(mVertexHandle);
//Load the regular point texture
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, mTexture.mTextureID);
// Draw point cloud
glDrawElements(GL_POINTS, numPoints, GL_UNSIGNED_SHORT, (const GLvoid*) &mIndices[0]);
Any idea what am I doing wrong?