im trying to draw a 3d object, and then draw a 2d texture on the screen. The texture is created with this function at onSurfaceCreated(GL10 gl):

public static int loadText(GL10 gl, float width, float height, String text) {
        gl.glGenTextures(1, mTextureNameWorkspace, 0);
        textureName = mTextureNameWorkspace[0];
        gl.glBindTexture(GL10.GL_TEXTURE_2D, textureName);
        gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MIN_FILTER, GL10.GL_NEAREST);
        gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MAG_FILTER, GL10.GL_LINEAR);
        gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_WRAP_S, GL10.GL_CLAMP_TO_EDGE);
        gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_WRAP_T, GL10.GL_CLAMP_TO_EDGE);
        gl.glTexEnvf(GL10.GL_TEXTURE_ENV, GL10.GL_TEXTURE_ENV_MODE, GL10.GL_REPLACE);
        bitmap = Bitmap.createBitmap((int) width, (int) height, Bitmap.Config.ARGB_4444);
        canvas = new Canvas(bitmap);
        canvas.drawText(text, width / 2, 50, paint);
        GLUtils.texImage2D(GL10.GL_TEXTURE_2D, 0, bitmap, 0);
        mCropWorkspace[0] = 0;
        mCropWorkspace[1] = bitmap.getHeight();
        mCropWorkspace[2] = bitmap.getWidth();
        mCropWorkspace[3] = -bitmap.getHeight();
        bitmap.recycle();
        ((GL11) gl).glTexParameteriv(GL10.GL_TEXTURE_2D, GL11Ext.GL_TEXTURE_CROP_RECT_OES, mCropWorkspace, 0);
        return textureName;
    }

The problem is if I draw the frames without calling this the 3d object is orange but obviously the 2d texture isnt drawn. But if I draw the frame after calling this then the 3d object becomes black. The code im using for drawing:

        gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT);
        gl.glDisable(GL10.GL_BLEND);
        gl.glShadeModel(GL10.GL_SMOOTH);
        gl.glMatrixMode(GL10.GL_PROJECTION);
        gl.glLoadIdentity();
        gl.glEnable(GL10.GL_DEPTH_TEST);
        gl.glLoadIdentity();
        GLU.gluPerspective(gl, 45.0f, (float) width / (float) height, 0.1f, 500.0f);
        gl.glMatrixMode(GL10.GL_MODELVIEW);
        gl.glLoadIdentity();
        gl.glTranslatef(4, 2, -10);
        gl.glRotatef(45, 0, 1, 0);
        car.draw(gl);
link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You are not enabling the texture unit anywhere. Put a glEnable(GL_TEXTURE_2D) before you do any other texture-related call.

link|improve this answer
i put gl.glDisable(GL10.GL_TEXTURE_2D); at the start of onDrawFrame(GL10 gl) and it worked perfectly thanks – ng93 Apr 13 '11 at 11:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.