私は頂点シェーダコンパイルする:このOpenGLはGLSLシェーダをコンパイルできません。行方不明?
pShader.ID = glCreateShader(GL_VERTEX_SHADER);
std::ifstream shaderFile;
shaderFile.open(pShader.path);
if (shaderFile.fail()) {
printf("!!!\nCannot open Shader File %s ! Shader compilation cancelled!", pShader.path.c_str());
}
else {
std::string line;
while (getline(shaderFile, line)) {
pShader.content += line + '\n';
++pShader.lines;
}
const char* shaderContent = pShader.content.c_str();
glShaderSource(pShader.ID, 1, &shaderContent, &pShader.lines);
glCompileShader(pShader.ID);
GLint success = 0;
glGetShaderiv(pShader.ID, GL_COMPILE_STATUS, &success);
if (success == GL_FALSE) {
//errror checking
}
よう
#version 430
layout(location = 0)in vec3 vertexPosition;
layout(location = 1)in vec3 vertexNormal;
layout(location = 2)in vec2 vertexUV;
out Vertex{
vec2 uv;
vec4 normal;
}vertexOut;
void main(){
gl_Position = vec4(
vertexPosition.x,
vertexPosition.y,
vertexPosition.z,
1.0f);
vertexOut.uv = vertexUV;
vertexOut.normal = vec4(vertexNormal, 0.0f);
}
をしかし、私はまた、取得しています私のフラグメントシェーダではコンパイルエラー
Vertex Shader failed to compile with the following errors:
ERROR: 0:3: error(#132) Syntax error "layou" parse error
ERROR: errror(#273) 1 compilation errors. No code generated
を取得しています」/"解析エラーですが、私はそれを見つけることができます。
私は入力と文脈のための拡張読み込みとglfwのためにglewを使用しています。 glewinfo.exeを実行すると、いくつかの拡張機能が不足しているとマークされていますが、AMD Radeon HD 7800ドライバは最新のものです。問題とは何ですか?
これらはglewinfo.exe結果である:http://m.uploadedit.com/ba3s/148318971635.txt
['glShaderSource'](http://docs.gl/gl4/glShaderSource)に渡す内容を確認してください。特に、あなたの' length'パラメータは非常に正しくないようです。 – PeterT