OK, here goes, I have been attempting to port the Sam O'Neil code to Java (Android) for a project I am working on, but cannot for the life of me figure out what I am doing wrong. The port seems fine, I have have tried hard coding all the uniforms into the shader and also passing them from Java (as shown in the code below). The problem is that all I get is a black dome. No output at all. Now I know the dome is there, and rendered correctly with back face cull off, since by leaving the last line in the fragment shader enabled, the dome is painted red and displayed as it should.
Can anyone see any glaring errors in my port or maths going astray? I post most of my code here, including the renderer. Sorry the code is so long!
update - I have now recoded all the uniforms to constants which has shortened the code and changed the output to render the dome in wireframe - but since I know the values were being passed correctly, I still get the same result.
Renderer
package xxx.xxx;
import javax.microedition.khronos.egl.EGLConfig;
import javax.microedition.khronos.opengles.GL10;
import android.content.Context;
import android.opengl.GLES20;
import android.opengl.GLSurfaceView;
import android.opengl.Matrix;
import android.os.SystemClock;
public class myRenderer implements GLSurfaceView.Renderer {
final float eyeX = 0.0f;
final float eyeY = 1.01f;
final float eyeZ = 0.0f;
final float lookX = 0.0f;
final float lookY = 1.01f;
final float lookZ = 1.0f;
final float upX = 0.0f;
final float upY = 1.0f;
final float upZ = 0.0f;
private final Context mActivityContext;
private float[] mModelMatrix = new float[16];
private float[] mViewMatrix = new float[16];
private float[] mProjectionMatrix = new float[16];
private float[] mMVPMatrix = new float[16];
private float[] mMVMatrix = new float[16];
private SkySphere skysphere;
private float[] mLightModelMatrix = new float[16];
private final float[] mLightPosInModelSpace = new float[] {0.0f, 0.0f, 0.0f, 1.0f};
private final float[] mLightPosInWorldSpace = new float[4];
private final float[] mLightPosInEyeSpace = new float[4];
public myRenderer(final Context activityContext) {
mActivityContext = activityContext;
}
@Override
public void onSurfaceCreated(GL10 glUnused, EGLConfig config) {
skysphere = new SkySphere(20,20,80.0f,1.0f,glUnused,mActivityContext,false,-1);
GLES20.glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
GLES20.glEnable(GLES20.GL_CULL_FACE);
GLES20.glEnable(GLES20.GL_DEPTH_TEST);
GLES20.glBlendFunc(GLES20.GL_SRC_ALPHA, GLES20.GL_ONE_MINUS_SRC_ALPHA);
GLES20.glEnable(GLES20.GL_BLEND);
Matrix.setLookAtM(mViewMatrix, 0, eyeX, eyeY, eyeZ, lookX, lookY,lookZ, upX, upY, upZ);
}
@Override
public void onSurfaceChanged(GL10 glUnused, int width, int height) {
GLES20.glViewport(0, 0, width, height);
final float ratio = (float) width / height;
final float left = -ratio;
final float right = ratio;
final float bottom = -1.0f;
final float top = 1.0f;
final float near = 1.0f;
final float far = 100.0f;
Matrix.frustumM(mProjectionMatrix, 0, left, right, bottom, top, near,far);
}
@Override
public void onDrawFrame(GL10 glUnused) {
// Do a complete rotation every 10 seconds.
long time = SystemClock.uptimeMillis() % 10000L;
float angleInDegrees = (360.0f / 10000.0f) * ((int) time);
GLES20.glClear(GLES20.GL_COLOR_BUFFER_BIT | GLES20.GL_DEPTH_BUFFER_BIT);
Matrix.setIdentityM(mLightModelMatrix, 0);
Matrix.translateM(mLightModelMatrix, 0, 0.0f, 0.0f, -5.0f);
Matrix.multiplyMV(mLightPosInWorldSpace, 0, mLightModelMatrix, 0, mLightPosInModelSpace, 0);
Matrix.multiplyMV(mLightPosInEyeSpace, 0, mViewMatrix, 0, mLightPosInWorldSpace, 0);
GLES20.glDisable(GLES20.GL_CULL_FACE);
Matrix.setIdentityM(mLightModelMatrix, 0);
//Matrix.translateM(mLightModelMatrix, 0, 0.0f, 0.0f, 0.0f);
//Matrix.rotateM(mLightModelMatrix, 0, angleInDegrees/10.0f,
// 0.0f, 1.0f, 0.0f);
//Matrix.scaleM(mLightModelMatrix, 0, 85.0f, 85.0f, 85.0f);
Matrix.multiplyMM(mMVMatrix, 0, mViewMatrix, 0, mLightModelMatrix,0);
Matrix.multiplyMM(mMVPMatrix, 0, mProjectionMatrix, 0, mMVMatrix, 0);
skysphere.draw(mViewMatrix, mProjectionMatrix);
GLES20.glEnable(GLES20.GL_CULL_FACE);
}
}
SkySphere (well dome anyway)
package xxx.xxx;
import java.nio.*;
import javax.microedition.khronos.opengles.GL10;
import android.opengl.GLES20;
import android.util.Log;
import android.app.Application;
import android.content.Context;
public class SkySphere extends Application {
FloatBuffer m_VertexData;
public final static int FLOAT_SIZE = 4;
int m_NumVertices;
float m_Scale;
float m_Squash;
float m_Radius;
int m_Stacks, m_Slices;
private int mProgramHandle;
private int mViewMatrixHandle;
private int mProjectionMatrixHandle;
private int mPositionHandle;
public SkySphere(int stacks, int slices, float radius, float squash, GL10 gl, Context context, boolean createTextureCoords, int textureID) {
this.m_Stacks = stacks;
this.m_Slices = slices;
this.m_Radius = radius;
this.m_Squash = squash;
init(m_Stacks, m_Slices, radius, squash, gl, context, createTextureCoords, textureID);
final String vertexShader = RawResourceReader.readTextFileFromRawResource(context,R.raw.sky_vertex_shader);
final String fragmentShader = RawResourceReader.readTextFileFromRawResource(context,R.raw.sky_fragment_shader);
final int vertexShaderHandle = ShaderHelper.compileShader(GLES20.GL_VERTEX_SHADER, vertexShader);
final int fragmentShaderHandle = ShaderHelper.compileShader(GLES20.GL_FRAGMENT_SHADER, fragmentShader);
mProgramHandle = ShaderHelper.createAndLinkProgram(vertexShaderHandle,fragmentShaderHandle, new String[] {""});
mViewMatrixHandle = GLES20.glGetUniformLocation(mProgramHandle,"viewMatrix");
mProjectionMatrixHandle = GLES20.glGetUniformLocation(mProgramHandle,"projectionMatrix");
mPositionHandle = GLES20.glGetAttribLocation(mProgramHandle,"vertex");
}
private void init(int stacks, int slices, float radius, float squash, GL10 gl, Context context, boolean createTextureCoords, int textureID) // 1
{
float[] vertexData;
int vIndex = 0; // vertex index
m_Scale = radius;
m_Squash = squash;
m_Stacks = stacks;
m_Slices = slices;
// Vertices
vertexData = new float[3 * ((m_Slices * 2 + 2) * m_Stacks )];
int phiIdx, thetaIdx;
// Latitude
// for (phiIdx = 0; phiIdx < m_Stacks; phiIdx++) { - commented out so we only send a dome of vertexes
for (phiIdx = m_Stacks; phiIdx >0; phiIdx--) {
// Starts at -1.57 and goes up to +1.57 radians for a sphere - half that for dome.
// /The first circle.
float phi0 = (float) Math.PI* ((float) (phiIdx + 0) * (1.0f / (float) (m_Stacks)) - 0.5f);
// The next, or second one.
float phi1 = (float) Math.PI* ((float) (phiIdx + 1) * (1.0f / (float) (m_Stacks)) - 0.5f);
float cosPhi0 = android.util.FloatMath.cos(phi0);
float sinPhi0 = android.util.FloatMath.sin(phi0);
float cosPhi1 = android.util.FloatMath.cos(phi1);
float sinPhi1 = android.util.FloatMath.sin(phi1);
float cosTheta, sinTheta;
// Longitude
for (thetaIdx = 0; thetaIdx < m_Slices; thetaIdx++) {
// Increment along the longitude circle each "slice."
float theta = (float) (2.0f * (float) Math.PI* ((float) thetaIdx) * (1.0 / (float) (m_Slices - 1)));
cosTheta = android.util.FloatMath.cos(theta);
sinTheta = android.util.FloatMath.sin(theta);
// Get x-y-z for the first vertex of stack.
vertexData[vIndex] = m_Scale * cosPhi0 * cosTheta;
vertexData[vIndex + 1] = m_Scale * (sinPhi0 * m_Squash);
vertexData[vIndex + 2] = m_Scale * (cosPhi0 * sinTheta);
vertexData[vIndex + 3] = m_Scale * cosPhi1 * cosTheta;
vertexData[vIndex + 4] = m_Scale * (sinPhi1 * m_Squash);
vertexData[vIndex + 5] = m_Scale * (cosPhi1 * sinTheta);
vIndex += 2 * 3;
// Degenerate triangle to connect stacks and maintain winding order.
vertexData[vIndex + 0] = vertexData[vIndex + 3] = vertexData[vIndex - 3];
vertexData[vIndex + 1] = vertexData[vIndex + 4] = vertexData[vIndex - 2];
vertexData[vIndex + 2] = vertexData[vIndex + 5] = vertexData[vIndex - 1];
}
}
m_NumVertices = ((m_Slices * 2 + 2) * (m_Stacks));
m_VertexData = ByteBuffer.allocateDirect(vertexData.length * FLOAT_SIZE).order(ByteOrder.nativeOrder()).asFloatBuffer();
m_VertexData.put(vertexData).position(0);
}
public void draw(float[] mViewMatrix,float[] mProjectionMatrix) {
GLES20.glUseProgram(mProgramHandle);
m_VertexData.position(0);
GLES20.glVertexAttribPointer(mPositionHandle, 3, GLES20.GL_FLOAT,false, 0, m_VertexData);
GLES20.glEnableVertexAttribArray(mPositionHandle);
GLES20.glUniformMatrix4fv(mViewMatrixHandle, 1, false, mViewMatrix, 0);
GLES20.glUniformMatrix4fv(mProjectionMatrixHandle, 1, false, mProjectionMatrix, 0);
GLES20.glDrawArrays(GLES20.GL_LINE_STRIP, 0, (m_Slices + 1) * 2 * ((m_Stacks -1 ) + 2)/2) ;
}
}
Vertex Shader
attribute vec3 vertex;
uniform mat4 viewMatrix;
uniform mat4 projectionMatrix;
vec3 v3CameraPos = vec3(0.0,1.01,0.0);
float fCameraHeight = length(v3CameraPos);
float fCameraHeight2 = fCameraHeight * fCameraHeight;
vec3 v3LightPos = vec3(0.0,0.0,1.0);
vec3 v3InvWavelength = vec3(1.0/0.17850625,1.0/0.10556001,1.0/0.050906640625);
float fInnerRadius = 1.0;
float fInnerRadius2 = fInnerRadius * fInnerRadius;
float fOuterRadius = fInnerRadius * 1.025;
float fOuterRadius2 = fOuterRadius * fOuterRadius;
float kR = 0.0025;
float kM = 0.0015;
float ESun = 15.0;
float fKrESun = kR * ESun;
float fKmESun = kM * ESun;
float fKr4PI = kR * 4.0 * 3.14159;
float fKm4PI = kM * 4.0 * 3.14159;
float fScale = 1.0 / (fOuterRadius - fInnerRadius);
float fScaleDepth = 0.25;
float fScaleOverScaleDepth = fScale / fScaleDepth;
const int iSamples = 4;
const float fInvSamples = 0.25;
varying vec2 texCoord;
varying vec3 color;
varying vec3 secondaryColor;
varying vec3 v3Direction;
float scale(float fCos)
{
float x = 1.0 - fCos;
return fScaleDepth * exp(-0.00287 + x*(0.459 + x*(3.83 + x*(-6.80 + x*5.25))));
}
void main(void)
{
// Get the ray from the camera to the vertex, and its length (which is the far point of the ray passing through the atmosphere)
vec3 v3Pos = vertex.xyz;
vec3 v3Ray = v3Pos - v3CameraPos;
float fFar = length(v3Ray);
v3Ray /= fFar;
// Calculate the ray's starting position, then calculate its scattering offset
vec3 v3Start = v3CameraPos;
float fHeight = length(v3Start);
float fDepth = exp(fScaleOverScaleDepth * (fInnerRadius - fCameraHeight));
float fStartAngle = dot(v3Ray, v3Start) / fHeight;
float fStartOffset = fDepth*scale(fStartAngle);
// Initialize the scattering loop variables
float fSampleLength = fFar * fInvSamples;
float fScaledLength = fSampleLength * fScale;
vec3 v3SampleRay = v3Ray * fSampleLength;
vec3 v3SamplePoint = v3Start + v3SampleRay * 0.5;
// Now loop through the sample rays
vec3 v3FrontColor = vec3(1.0, 1.0, 1.0);
for(int i=0; i<iSamples; i++)
{
float fHeight = length(v3SamplePoint);
float fDepth = exp(fScaleOverScaleDepth * (fInnerRadius - fHeight));
float fLightAngle = dot(v3LightPos, v3SamplePoint) / fHeight;
float fCameraAngle = dot(v3Ray, v3SamplePoint) / fHeight;
float fScatter = (fStartOffset + fDepth*(scale(fLightAngle) - scale(fCameraAngle)));
vec3 v3Attenuate = exp(-fScatter * (v3InvWavelength * fKr4PI + fKm4PI));
v3FrontColor += v3Attenuate * (fDepth * fScaledLength);
v3SamplePoint += v3SampleRay;
}
// Finally, scale the Mie and Rayleigh colors and set up the varying variables for the pixel shader
secondaryColor.rgb = v3FrontColor * fKmESun;
color.rgb = v3FrontColor * (v3InvWavelength * fKrESun);
gl_Position = projectionMatrix * viewMatrix * vec4(vertex,1.0);
v3Direction = v3CameraPos - v3Pos;
}
And finally the frag shader
precision mediump float;
varying vec3 color;
varying vec3 secondaryColor;
varying vec3 v3Direction;
vec3 v3LightPos = vec3(0.0,0.0,1.0);
float g = -0.95;
float g2 = g*g;
float fExposure = 2.0;
void main (void)
{
float fCos = dot(v3LightPos, v3Direction) / length(v3Direction);
float fRayleighPhase = 0.75 * (1.0 + fCos*fCos);
float fMiePhase = 1.5 * ((1.0 - g2) / (2.0 + g2)) * (1.0 + fCos*fCos) / pow(1.0 + g2 - 2.0*g*fCos, 1.5);
gl_FragColor.rgb = 1.0 - exp( -fExposure * (fRayleighPhase * color + fMiePhase * secondaryColor) );
gl_FragColor.a = 1.0;
}
