after a long search, I didn't find any solution to my problem, so here it is:
I have the following sprite:

but in my game with a OpenGLSurface, using 2d texture it looks like this:

The options I'm using in my textures are these:
public void onSurfaceCreated(GL10 gl, EGLConfig confid) {
gl.glEnable(GL10.GL_TEXTURE_2D);
gl.glShadeModel(GL10.GL_SMOOTH);
gl.glClearColor(255,255, 255,0);
gl.glClearDepthf(1.0f);
gl.glEnable(GL10.GL_BLEND);
gl.glDisable(GL10.GL_DEPTH_TEST);
gl.glBlendFunc(GL10.GL_SRC_ALPHA, GL10.GL_ONE_MINUS_SRC_ALPHA);
}
public void loadTextures(GL10 gl, Context context) {
gl.glGenTextures(textureCount, textures, 0);
for (int loop = 0; loop < textureCount; loop++) {
gl.glBindTexture(GL10.GL_TEXTURE_2D, textures[loop]);
gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MAG_FILTER,
GL10.GL_LINEAR);
gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MIN_FILTER,
GL10.GL_LINEAR);
gl.glHint(GL10.GL_PERSPECTIVE_CORRECTION_HINT, // OpenGL docs.
GL10.GL_NICEST);
GLUtils.texImage2D(GL10.GL_TEXTURE_2D, 0, bitmap[loop], 0);
bitmap[loop].recycle();
}
}
Is it only this weird because i'm scaling the image, making it shortier? Is there anything i can do to have better graphics?
ADDED the DRAW:
public void draw(GL10 gl) {
gl.glBindTexture(GL10.GL_TEXTURE_2D, textures[0]);
for (int loop = 0; loop < sprites.size(); loop++) {
gl.glPushMatrix();
try {
DevQuestSprite sprite = sprites.get(loop);
sprite.update(screenHeight); // update enemy
gl.glBindTexture(GL10.GL_TEXTURE_2D, textures[sprite.curSprite]);
float transx = (wRatio * sprite.x);
float transy = (screenHeight * wRatio) - (wRatio * sprite.y)
- 1 / hRatio;
gl.glTranslatef(transx, transy, 0.0f);
sprite.draw(gl);
} catch (NullPointerException e) {
}
gl.glPopMatrix();
}
}