opengles学习

今天看明白了android sdk中的hellogl2的源码。

gles2.0中使用着色器,一个最简单的gles2.0中至少必须要两个着点器,一个顶点着色器,一个片断着色器。

以下是画线:

glVertexAttribPointer(_postion, 3, GL_FLOAT, false, 0, gTriangleVertices);
glEnableVertexAttribArray(_postion);
glVertexAttribPointer(_color,3,GL_FLOAT,false,0,colors);
glEnableVertexAttribArray(_color);
glDrawArrays(GL_LINES, 0, 2);

 

 

发表评论?

0 条评论。

发表评论


注意 - 你可以用以下 HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>