1

OpenGL 3.3+ を使用してランドスケープ エディターにシャドウ マッピングを実装しようとしています。いくつかのチュートリアルを使用して、コードをコンパイルして実行することができましたが、ランドスケープ グリッドの後ろの行 (最小の z) を除いて、ランドスケープ全体が影になっています。

現在、ライトにカメラと同じ投影、ビュー、およびモデル マトリックスを使用しています (負の z はカメラから最も離れています)。

投影、ビュー、およびモデル マトリックスの初期化 (LWJGL マトリックス チュートリアルから):

modelPos = new Vector3f(0f, 0f, -20f);
modelAngle = new Vector3f(15f, 0f, 0f);
modelScale = new Vector3f(1f, 1f, 1f);
cameraPos = new Vector3f(-50f, 0f, -120f);

projectionMatrix = new Matrix4f();

float fieldOfView = 120f;
float aspectRatio = (float)width / (float)height;
float near_plane = 0.01f;
float far_plane = 100f;

float y_scale = DepthMatrixUtility.coTangent(DepthMatrixUtility.degreesToRadians(fieldOfView / 2f));
float x_scale = y_scale / aspectRatio;
float frustum_length = far_plane - near_plane;

projectionMatrix.m00 = x_scale;
projectionMatrix.m11 = y_scale;
projectionMatrix.m22 = -((far_plane + near_plane) / frustum_length);
projectionMatrix.m23 = -1;
projectionMatrix.m32 = -((2 * near_plane * far_plane) / frustum_length);

シーンを表示するときにマトリックスをバインドする:

Matrix4f.translate(cameraPos, viewMatrix, viewMatrix);
Matrix4f.scale(modelScale, modelMatrix, modelMatrix);
Matrix4f.translate(modelPos, modelMatrix, modelMatrix);

Matrix4f.rotate(DepthMatrixUtility.degreesToRadians(modelAngle.z), new Vector3f(0, 0, 1), modelMatrix, modelMatrix);
Matrix4f.rotate(DepthMatrixUtility.degreesToRadians(modelAngle.y), new Vector3f(0, 1, 0), modelMatrix, modelMatrix);
Matrix4f.rotate(DepthMatrixUtility.degreesToRadians(modelAngle.x), new Vector3f(1, 0, 0), modelMatrix, modelMatrix);

matrix = new Matrix4f();
Matrix4f.mul(matrix, projectionMatrix, matrix);
Matrix4f.mul(matrix, viewMatrix, matrix);
Matrix4f.mul(matrix, modelMatrix, matrix);

matrix.store(matrix44Buffer);
matrix44Buffer.flip();

matrixLocation = GL20.glGetUniformLocation(pId, "matrix");
GL20.glUniformMatrix4(matrixLocation, false, matrix44Buffer);

フラグメント シェーダーに色を保存して FBO をテストしたところ、高さマップが正しく表示され (画面の隅にある小さなクワッドに FBO テクスチャを描画しました)、高さマップを変更すると更新されました。

次に、最初のパスで深度をテクスチャに保存するように FBO を変更しました。

depthTexture = GL11.glGenTextures();

GL11.glBindTexture(GL11.GL_TEXTURE_2D, depthTexture);

GL11.glTexImage2D(GL11.GL_TEXTURE_2D, 0, GL11.GL_DEPTH_COMPONENT, Window.getScreenWidth(), Window.getScreenHeight(), 0, GL11.GL_DEPTH_COMPONENT, GL11.GL_UNSIGNED_BYTE, (ByteBuffer)null);

GL11.glTexParameterf(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_WRAP_S, GL11.GL_NEAREST);
GL11.glTexParameterf(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_WRAP_T, GL11.GL_NEAREST);
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MAG_FILTER, GL11.GL_LINEAR);
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MIN_FILTER, GL11.GL_LINEAR);

GL11.glBindTexture(GL11.GL_TEXTURE_2D, 0);

fboId = GL30.glGenFramebuffers();
GL30.glBindFramebuffer(GL30.GL_FRAMEBUFFER, fboId);

GL11.glDrawBuffer(GL11.GL_NONE);
GL11.glReadBuffer(GL11.GL_NONE);

GL32.glFramebufferTexture(GL30.GL_FRAMEBUFFER, GL30.GL_DEPTH_ATTACHMENT, depthTexture, 0);

verifyFBO();

最初のパスの頂点シェーダー (シャドウ マップの作成):

#version 330 core

uniform mat4 matrix;

in vec4 in_Position;

void main(void)
{
gl_Position = matrix * in_Position;
}

最初のパスのフラグメント シェーダー:

#version 330 core

layout(location = 0) out float fragmentdepth;

void main(void)
{
fragmentdepth = gl_FragCoord.z;
}

私のバイアス行列:

[0.5f, 0.0f, 0.0f, 0.0f]
[0.0f, 0.5f, 0.0f, 0.0f]
[0.0f, 0.0f, 0.5f, 0.0f]
[0.5f, 0.5f, 0.5f, 1.0f]

2 番目のパスの頂点シェーダー (シャドウ マップを使用してシーンをレンダリング):

void main(void)
{
    gl_Position = matrix * in_Position;
    ShadowCoord = biasMatrix * lightMatrix * in_Position;
}

2 番目のパスのフラグメント シェーダー:

if (texture(shadowMap, ShadowCoord.xy).z  <  ShadowCoord.z)
{
    vec4 colour = 0.5 * out_Colour;
    out_Colour = new vec4(colour[0], colour[1], colour[2], 1.0f);
}
4

1 に答える 1