このシェーダーを変換しようとしています:
<script id="shader-vs" type="x-shader/x-vertex">
attribute vec2 pos;
attribute vec4 aVertexColor;
varying vec4 vColor;
void main(void) {
gl_Position = vec4(pos.x, pos.y, 0.0, 1.0);
vColor = aVertexColor;
}
</script>
と
<script id="shader-fs" type="x-shader/x-fragment">
precision mediump float;
varying vec4 vColor;
void main(void) {
gl_FragColor = vColor;
}
</script>
結果として(この出力はあなたによく見えますか?または何かが欠けています):
mov vt0.zw, vc0.xyyy
mov vt0.x, va0.x
mov vt0.y, va0.y
mov op, vt0
mov v0, va1
と
mov oc, v0
しかし、AGAL頂点シェーダーを非常に単純な作業に変更すると、何も表示できません。
mov op, va0n
mov v0, va1n
次の方法で GLSL を AGAL に変換するときに、定数を追加します。
var constval:Array;
for (var constant:String in result.consts) {
trace(constant, result.consts[constant]);
constval = result.consts[constant];
context.setProgramConstantsFromVector( type, int(constant.slice(2)), Vector.<Number>([constval[0], constval[1], constval[2], constval[3]]) )
}
そして、次のようにすべてのバッファーを準備します。
var vertices:Vector.<Number> = Vector.<Number>([
-0.3,-0.3,0, 1, 0, 0, // x, y, z, r, g, b
-0.3, 0.3, 0, 0, 1, 0,
0.3, 0.3, 0, 0, 0, 1]);
const dataPerVertex:int = 6;
vertexbuffer = context.createVertexBuffer(vertices.length/dataPerVertex, dataPerVertex);
vertexbuffer.uploadFromVector(vertices, 0, vertices.length/dataPerVertex );
var indices:Vector.<uint> = Vector.<uint>([0, 1, 2]);
indexbuffer = context.createIndexBuffer(3);
indexbuffer.uploadFromVector (indices, 0, 3);
context.setVertexBufferAt (0, vertexbuffer, 0, Context3DVertexBufferFormat.FLOAT_3); //Defines shader input va0 as the position data
context.setVertexBufferAt(1, vertexbuffer, 3, Context3DVertexBufferFormat.FLOAT_3);//Defines shader input va1 as the position data
助言がありますか?