wined3d: Explicitly enable the GL_ARB_draw_buffers extension in GLSL shaders.

oldstable
H. Verbeet 2006-10-02 20:06:38 +02:00 committed by Alexandre Julliard
parent dd70c0ae7c
commit 35bd8d32b1
1 changed files with 4 additions and 0 deletions

View File

@ -838,6 +838,10 @@ inline static VOID IWineD3DPixelShaderImpl_GenerateShader(
/* Create the hw GLSL shader object and assign it as the baseShader.prgId */
GLhandleARB shader_obj = GL_EXTCALL(glCreateShaderObjectARB(GL_FRAGMENT_SHADER_ARB));
if (GL_SUPPORT(ARB_DRAW_BUFFERS)) {
shader_addline(&buffer, "#extension GL_ARB_draw_buffers : enable\n");
}
/* Base Declarations */
shader_generate_glsl_declarations( (IWineD3DBaseShader*) This, reg_maps, &buffer, &GLINFO_LOCATION);