簡體   English   中英

我無法使用opengl刷新屏幕

[英]I can't refresh my screen with opengl

我嘗試學習opengl,但由於找不到相關信息而遇到了一些問題。

我可以在屏幕上創建表單,但是無法更新屏幕,因此我嘗試了很多事情。

在這里,我使用可運行的,但沒有任何作用。

感謝您的幫助,這是我的surfaceView代碼

public class MyGLSurfaceView extends GLSurfaceView implements Runnable{
int x1=1440,y1=2560,pub,i=1;

private final MyGLRenderer mRenderer;

public MyGLSurfaceView(Context context) {
    super(context);


    // Create an OpenGL ES 2.0 context.
    setEGLContextClientVersion(2);
    //fix for error No Config chosen, but I don't know what this does.
    super.setEGLConfigChooser(8 , 8, 8, 8, 16, 0);
    // Set the Renderer for drawing on the GLSurfaceView
    mRenderer = new MyGLRenderer();
    setRenderer(mRenderer);

    // Render the view only when there is a change in the drawing data
    setRenderMode(GLSurfaceView.RENDERMODE_WHEN_DIRTY);
}

private final float TOUCH_SCALE_FACTOR = 180.0f / 320;
private float mPreviousX;
private float mPreviousY;
public void modif(){
    requestRender();
    try{Thread.sleep(20);}
    catch(Exception e){}}

@Override
public boolean onTouchEvent(MotionEvent e) {
    // MotionEvent reports input details from the touch screen
    // and other input controls. In this case, you are only
    // interested in events where the touch position changed.

    float x = e.getX();
    float y = e.getY();

    switch (e.getAction()) {

        case MotionEvent.ACTION_MOVE:

            float dx = x - mPreviousX;
            float dy = y - mPreviousY;

            // reverse direction of rotation above the mid-line
            if (y > getHeight() / 2) {
                dx = dx * -1 ;
            }

            // reverse direction of rotation to left of the mid-line
            if (x < getWidth() / 2) {
                dy = dy * -1 ;
            }

            mRenderer.setAngle(
                    mRenderer.getAngle() +
                            ((dx + dy) * TOUCH_SCALE_FACTOR));  // = 180.0f / 320
            requestRender();

        case MotionEvent.ACTION_DOWN:
            modif();

    }

    mPreviousX = x;
    mPreviousY = y;
    return true;
}

public void run(){
    while(true){
        modif();
    }
}

}

看來您正在使用Android文檔中的教程,對嗎?

https://developer.android.com/training/graphics/opengl/touch.html#angle

為了移動形狀,您必須在觸摸屏幕的同時移動手指。

您是否正在嘗試完成其他事情?

當我再次閱讀tuto時,我找到了解決方案,我將setRenderMode(GLSurfaceView.RENDERMODE_WHEN_DIRTY); I delete the line and now the cpde working.放在了這行setRenderMode(GLSurfaceView.RENDERMODE_WHEN_DIRTY); I delete the line and now the cpde working. setRenderMode(GLSurfaceView.RENDERMODE_WHEN_DIRTY); I delete the line and now the cpde working.

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM