OpenGL GLSL シェーダーで遊ぶことを学ぼうとしています。シェーダーを作成してコンパイルするだけの非常に単純なプログラムを作成しました。ただし、コンパイル手順に到達するたびに、次のエラーが発生します。
エラー: プリプロセッサ エラー エラー: ソースの前処理に失敗しました。
これが私の非常に単純なコードです:
#include <GL/gl.h>
#include <GL/glu.h>
#include <GL/glut.h>
#include <GL/glext.h>
#include <time.h>
#include <stdio.h>
#include <iostream>
#include <stdlib.h>
using namespace std;
const int screenWidth = 640;
const int screenHeight = 480;
const GLchar* gravity_shader[] = {
"#version 140"
"uniform float t;"
"uniform mat4 MVP;"
"in vec4 pos;"
"in vec4 vel;"
"const vec4 g = vec4(0.0, 0.0, -9.80, 0.0);"
"void main() {"
" vec4 position = pos;"
" position += t*vel + t*t*g;"
" gl_Position = MVP * position;"
"}"
};
double pointX = (double)screenWidth/2.0;
double pointY = (double)screenWidth/2.0;
void initShader() {
GLuint shader = glCreateShader(GL_VERTEX_SHADER);
glShaderSource(shader, 1, gravity_shader, NULL);
glCompileShader(shader);
GLint compiled = true;
glGetShaderiv(shader, GL_COMPILE_STATUS, &compiled);
if(!compiled) {
GLint length;
GLchar* log;
glGetShaderiv(shader, GL_INFO_LOG_LENGTH, &length);
log = (GLchar*)malloc(length);
glGetShaderInfoLog(shader, length, &length, log);
std::cout << log <<std::endl;
free(log);
}
exit(0);
}
bool myInit() {
initShader();
glClearColor(1.0f, 1.0f, 1.0f, 0.0f);
glColor3f(0.0f, 0.0f, 0.0f);
glPointSize(1.0);
glLineWidth(1.0f);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluOrtho2D(0.0, (GLdouble) screenWidth, 0.0, (GLdouble) screenHeight);
glEnable(GL_DEPTH_TEST);
return true;
}
int main(int argc, char** argv) {
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB);
glutInitWindowSize(screenWidth, screenHeight);
glutInitWindowPosition(100, 150);
glutCreateWindow("Mouse Interaction Display");
myInit();
glutMainLoop();
return 0;
}
どこが間違っていますか?それが役立つ場合は、atom プロセッサと最新の Ubuntu を実行する統合 Intel ビデオを備えた Acer Aspire One でこれを実行しようとしています。それほど強力ではありませんが、繰り返しになりますが、これは非常に単純なシェーダーです。ご覧いただきありがとうございます!