Lines Matching refs:vtx
153 } vtx; in LoadPlane() local
157 vtx.pos[0][0] = +3.0f; in LoadPlane()
158 vtx.pos[0][1] = -1.0f; in LoadPlane()
159 vtx.pos[0][2] = +3.0f; in LoadPlane()
161 vtx.pos[1][0] = +3.0f; in LoadPlane()
162 vtx.pos[1][1] = -1.0f; in LoadPlane()
163 vtx.pos[1][2] = -3.0f; in LoadPlane()
165 vtx.pos[2][0] = -3.0f; in LoadPlane()
166 vtx.pos[2][1] = -1.0f; in LoadPlane()
167 vtx.pos[2][2] = +3.0f; in LoadPlane()
169 vtx.pos[3][0] = -3.0f; in LoadPlane()
170 vtx.pos[3][1] = -1.0f; in LoadPlane()
171 vtx.pos[3][2] = -3.0f; in LoadPlane()
175 vtx.nor[i][0] = 0.f; in LoadPlane()
176 vtx.nor[i][1] = 1.f; in LoadPlane()
177 vtx.nor[i][2] = 0.f; in LoadPlane()
186 glBufferData(GL_ARRAY_BUFFER, sizeof(vtx), vtx.pos[0], GL_STATIC_DRAW); in LoadPlane()