GLSL プログラムをコンパイルしようとしましたが、このエラーが表示されます
warning C4627: '#include "Angel.h"': skipped when looking for precompiled header use
Add directive to 'stdafx.h' or rebuild precompiled header
fatal error C1010: unexpected end of file while looking for precompiled header. Did you
forget to add '#include "stdafx.h"' to your source
しかし、実際にはすでに stdafx.h をインクルードしており、Visual Studio 2012 とプリコンパイル済みヘッダーを使用してプロジェクトを作成しました。
#include "stdafx.h"
#include "Angel.h"
const int NumPoints = 5000;
//----------------------------------------------------------------------------
void
init( void )
{
vec2 points[NumPoints];
...