2011-03-25 16 views
7

¿Puede darme alguna pista sobre cualquier buen ejemplo de SkyBox en OpenGL ES 2.0? He encontrado solo OpenGL y no funciona para mí. que estoy haciendo de esta manera: inicialización:¿CÓMO crear OpenGL ES 2.0 SkyBox?

glUseProgram(m_programSkyBox.Program); 
glGenBuffers(1, &skyBoxVertexBuffer); 
glBindBuffer(GL_ARRAY_BUFFER, skyBoxVertexBuffer); 


float vertices[24] = { 
    -1.0, -1.0, 1.0, 
    1.0, -1.0, 1.0, 
    -1.0, 1.0, 1.0, 
    1.0, 1.0, 1.0, 
    -1.0, -1.0, -1.0, 
    1.0, -1.0, -1.0, 
    -1.0, 1.0, -1.0, 
    1.0, 1.0, -1.0, 
}; 

glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW); 

glGenBuffers(1, &skyBoxIndexBuffer); 
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, skyBoxIndexBuffer); 


GLubyte indices[14] = {0, 1, 2, 3, 7, 1, 5, 4, 7, 6, 2, 4, 0, 1}; 
glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(indices), indices, GL_STATIC_DRAW); 

Dibujo del palco:

glClearColor(0.5f, 0.5f, 0.5f, 1); 
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); 
glUseProgram(m_programSkyBox.Program); 

glDisable(GL_DEPTH_TEST); // skybox should be drawn behind anything else 
glBindTexture(GL_TEXTURE_CUBE_MAP, m_textures.Cubemap); 


glBindBuffer(GL_ARRAY_BUFFER, skyBoxVertexBuffer); 
glVertexAttribPointer(m_programSkyBox.Attributes.Position, 3, GL_FLOAT, GL_FALSE, 0, (void*)0); 
glEnableVertexAttribArray(m_programSkyBox.Attributes.Position); 
glBindBuffer(GL_ARRAY_BUFFER, 0); 

glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, skyBoxIndexBuffer); 
glDrawElements(GL_TRIANGLE_STRIP, 14, GL_UNSIGNED_BYTE, 0); 
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0); 
glEnable(GL_DEPTH_TEST); 

Textura de carga está funcionando. Shader se compila correctamente y se ve así: Vertex Shader:

attribute vec4 position; 
varying mediump vec3 texCoord; 
void main() { 
    texCoord.xyz = position.xyz; 
} 

Fragmento de sombreado:

uniform samplerCube Sampler; 

varying mediump vec3 texCoord; 

void main() { 
    mediump vec3 cube = vec3(textureCube(Sampler, texCoord.xyz)); 
    gl_FragColor = vec4(cube, 1.0); 
} 

Pero no puedo conseguir cubo visible. ¿Estoy haciendo algo mal? Gracias

Respuesta

3

Mi error, he encontrado el problema. No he "creado" vértice en vertex shader. Debe verse de esta manera:

uniform mat4 modelViewMatrix; 
    uniform mat4 projectionMatrix; 

    attribute vec4 position; 
    varying mediump vec4 texCoord; 
    void main() { 
     texCoord = position; 
     gl_Position = projectionMatrix * modelViewMatrix * position; 

    } 
+0

Necroing. ¿Tendría una fuente para crear una textura GL_TEXTURE_CUBE_MAP? – sgtHale

Cuestiones relacionadas