0

我在尝试编译顶点着色器时遇到分段错误。我想我在传递顶点属性时发现了问题。以下行编译(它们可能不起作用,但它们仍然编译):

# version 330
layout(location=0) in vec4 in_Loc;
layout(location=1) in vec4 in_Color;
layout(location=2) in vec4 in_Norm;

# version 330
layout(location=0) in vec4 in_Loc;
layout(location=1) in vec4 in_Color;
layout(location=25) in vec4 in_Norm;

# version 330
layout(location=0) in vec4 in_Loc;
layout(location=1) in vec4 in_Color;
layout(location=2) in vec4 in_Norm;
layout(location=33) in vec4 in_Anything

不会编译。我想我只能定义 3 个 vec4 属性。但是,带有 GL_MAX_VERTEX_ATTRIBS 的 glGetIntegerv 返回 16,这符合 OpenGL 标准。这是与我的硬件相关的某种错误吗?我正在使用英特尔显卡

    *-display
         description: VGA compatible controller
         product: 3rd Gen Core processor Graphics Controller
         vendor: Intel Corporation
         physical id: 2
         bus info: pci@0000:00:02.0
         version: 09
         width: 64 bits
         clock: 33MHz
         capabilities: msi pm vga_controller bus_master cap_list rom
         configuration: driver=i915 latency=0
         resources: irq:49 memory:f0000000-f03fffff memory:e0000000-efffffff ioport:3000(size=64)

和台面 10:

OpenGL vendor string: Intel Open Source Technology Center
OpenGL renderer string: Mesa DRI Intel(R) Ivybridge Mobile 
OpenGL core profile version string: 3.3 (Core Profile) Mesa 10.1.0
OpenGL core profile shading language version string: 3.30
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile.

操作系统是 ubuntu 14.04。

4

1 回答 1

0

由于您的评论,我发现了错误。仅使用 c 创建测试用例后,编译 glsl 文件。事实证明,分段错误发生在“cython”中,但如果我直接从 c 调用库,则不会(尽管 c 中有一个“错误”)。该错误是通过在 glsl 文件中添加额外的行而产生的,这触发了分段错误。我对此感到困惑,并认为错误出在编译 glsl 中。但是,问题在于加载 glsl 文件的函数:

void load_file(const char* fname, char** buffer)
{
    FILE* fp;
    long fsize;
    fprintf(stdout, "Loading %s \n", fname);
    fp = fopen(fname, "r");
    fseek(fp, 0, SEEK_END);
    fsize = ftell(fp);
    fseek(fp, 0, SEEK_SET);
    if (fp == NULL)
    {
      fprintf(stderr, "Can't open %s\n", fname);
      exit(1);
    }
    *buffer = (char* ) malloc(fsize + 1);
    fprintf(stdout, "%d\n", (int ) fsize);
    fread(*buffer, fsize, 1, fp);
    buffer[fsize] = 0;
    fclose(fp);
}

通过替换 buffer[fsize] = 0; 使用缓冲区 [0] [fsize] = 0;我解决了这个问题。我不知道这是从哪里来的,也不知道这是否真的是我的代码中的一个错误,但它可能与 cython 如何分配内存有关。

于 2014-04-01T09:29:20.487 回答