我在android上创建着色器程序时遇到了一个非常困难的问题。当我调用glCreateShader或glCreateProgram时,每个都会返回0。
我已经介绍了有关故障排除的所有基础知识:
>
我检查以确保我有一个ogl上下文(我做了,我通过用各种颜色清除帧缓冲区来测试它,这有效)。
我尝试glGetError但它什么也没有返回(GL_NO_ERROR)
我不是opengl或android专家,所以我不知道还有什么其他原因会导致这种情况。
我一直在nexus 7平板电脑上运行我的应用程序,我使用OpenGL ES 2.0,我的目标是最新版本的Android(版本17)。
最后,我还要展示我的代码:
这是我设置应用程序的样板代码:
public class Platform implements ILinkable<Activity> {
class GameLoop extends GLSurfaceView implements GLSurfaceView.Renderer {
class Graphics2D implements IGraphics2D {
int width = 0;
int height = 0;
public void setWidth (int width ) { this.width = width; }
public void setHeight(int height) { this.height = height; }
public int getWidth () { return width; }
public int getHeight() { return height; }
}
class Time implements ITime {
float frametime = 0;
float totaltime = 0;
long temptime = 0;
boolean running = true;
public void beginTimeCount() {
temptime = System.nanoTime();
}
public void endTimeCount() {
frametime = (System.nanoTime() - temptime) / 1000000;
totaltime += frametime;
}
public float getFrameTime() { return frametime; }
public float getTotalTime() { return totaltime; }
}
Graphics2D graphics2d = new Graphics2D();
Time time = new Time();
boolean running = true;
public GameLoop(Context context) {
super(context);
setEGLContextClientVersion(2);
setRenderer(this);
//setRenderMode(GLSurfaceView.RENDERMODE_WHEN_DIRTY);
}
public void onSurfaceCreated(GL10 unused, EGLConfig config) {
GLES20.glClearColor(0.5f, 0.0f, 0.5f, 1.0f);
}
public void onDrawFrame(GL10 unused) {
if (running) {
time.beginTimeCount();
for (IUpdateable u : Platform.this.root.update)
u.onUpdate(time);
GLES20.glClear(GLES20.GL_COLOR_BUFFER_BIT);
for (IDrawable2D d : Platform.this.root.draw2d) {
d.onDraw2D(graphics2d);
}
for (IDrawable3D d : Platform.this.root.draw3d)
d.onDraw3D();
time.endTimeCount();
}
}
public void onSurfaceChanged(GL10 unused, int width, int height) {
GLES20.glViewport(0,0, width, height);
graphics2d.setWidth(width);
graphics2d.setHeight(height);
for (IDrawable2D d : Platform.this.root.draw2d)
d.onSize2D(graphics2d);
}
public void onPause() {
super.onPause();
running = false;
}
public void onResume() {
super.onResume();
running = true;
}
}
private GameLoop gameloop;
public Node root;
public Platform() {
this.root = new Node();
}
public void link(Activity activity) {
this.gameloop = new GameLoop(activity);
activity.requestWindowFeature(Window.FEATURE_NO_TITLE);
activity.setContentView(this.gameloop);
}
public void unlink(Activity activity) {
this.gameloop = null;
activity.setContentView(null);
}
}
这是主要的活动:
public class MainActivity extends Activity {
private Game game;
private Platform platform;
public MainActivity() {
platform = new Platform();
game = new Game();
}
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
platform.link(this);
game.link(platform.root);
game.onStart();
}
public void onDestroy() {
super.onDestroy();
game.onStop();
game.unlink(platform.root);
platform.unlink(this);
}
}
这是创建着色器和程序的代码:
public static int loadShader(int shaderType, String source) throws FmtException {
int[] gotVar = new int[]{ 0 };
int shader = GLES20.glCreateShader(shaderType);
if (shader == 0)
throw new FmtException(FmtException.GLES,"could not create shader: %s",getError());
GLES20.glShaderSource(shader, source);
GLES20.glCompileShader(shader);
GLES20.glGetShaderiv(shader, GLES20.GL_COMPILE_STATUS, gotVar, 0);
if (gotVar[0] == 0) {
GLES20.glGetShaderiv(shader, GLES20.GL_INFO_LOG_LENGTH, gotVar, 0);
if (gotVar[0] != 0) {
GLES20.glDeleteShader(shader);
throw new FmtException(FmtException.GLES, "could not compile shader %d:\n%s\n",shaderType, GLES20.glGetShaderInfoLog(shader));
}
}
return shader;
}
public static int createProgram(String pVertexSource, String pFragmentSource) throws FmtException {
int[] gotVar = new int[]{ GLES20.GL_FALSE };
int vertexShader = loadShader(GLES20.GL_VERTEX_SHADER, pVertexSource);
int pixelShader = loadShader(GLES20.GL_FRAGMENT_SHADER, pFragmentSource);
int program = GLES20.glCreateProgram();
if (program == 0)
throw new FmtException(FmtException.GLES, "could not create program: %s",getError());
GLES20.glAttachShader(program, vertexShader);
GLES20.glAttachShader(program, pixelShader);
GLES20.glLinkProgram(program);
GLES20.glGetProgramiv(program, GLES20.GL_LINK_STATUS, gotVar, 0);
if (gotVar[0] != GLES20.GL_TRUE) {
GLES20.glGetProgramiv(program, GLES20.GL_INFO_LOG_LENGTH, gotVar, 0);
if (gotVar[0] != 0) {
GLES20.glDeleteProgram(program);
throw new FmtException(FmtException.GLES, "could not link program:\n%s\n", GLES20.glGetProgramInfoLog(program));
}
}
return program;
}
任何帮助或建议都将不胜感激。
对于那些正在寻找答案的人来说,它隐藏在评论中。我引用了评论中的@Reigertje。
着色器调用应该位于onSurfaceChanged()、onSurfaceCreated()或onDrawFrame()的GL线程中
构建或组装调试工作良好。 但是,安装APK时会出现“分析包时出错”的问题。 当我查找它时,我看到要将android:导出="true"添加到活动中,将其添加到所有活动中正确吗?我应该添加活动以外的东西吗? 举个例子
我正在开发一个应用程序,(强大的)用户必须为其设置自己的服务器(即nginx)来运行后端应用程序。需要在应用程序中配置相应的域,这样它才能连接。我主要在我自己的手机(索尼z3c)上进行测试,并开始为5.1开发。后来我收到了6.0版本的更新,但在模拟器中仍然保持了5.1版本。不久之前,我开始使用7.0镜像的AVD,但令我吃惊的是,它不会连接到我的服务器,告诉我ssl握手失败。我的nginx配置相当严
在project 从服务器链接(.svg)获取 如何下载该给定url的图标,并使用glide在ImageView中显示它? 现在我用的是这样的: 在哪里有: 还添加了下一个类: SVGDRAWABLE转码器: SvgMoules: SvgSoftwareLayerSetter: 但我也只显示选项<代码>数据。logoUrl不为空,但不显示 UPD: W/Glide:加载失败https://mand
我已经试过几次了,但我不知道问题出在哪里。难道我们不能在windows 8.1中使用android studios吗?我所有的开发工作都卡住了…请帮忙
我正在尝试用Objective-C编写一个波阵面OBJ文件查看器,它能够从文件中加载网格/材质/着色器。我已经为着色器和着色器程序创建了类,我正在尝试创建一个OpenGL着色器程序对象,作为着色器程序类的init方法的一部分: 但是,调用glCreateProgram会导致EXC_BAD_访问,调用[SRShader compile]也会导致EXC_BAD_访问,而[SRShader compil
在Groovy中使用Dropbox和GoogleDrive构建应用程序,测试运行良好。 代码: 然而,在Codeship和Amazon上运行时,测试失败: 消息:创建名为“googleAuthorizationCodeFlowBuilder”的bean时出错:bean的实例化失败;嵌套异常为org . spring framework . beans . bean instantiation ex