Lines Matching defs:params
634 int params = 0x1234;
639 ctx.glGetSamplerParameteriv (-1, GL_TEXTURE_MAG_FILTER, ¶ms);
644 ctx.glGetSamplerParameteriv (sampler, -1, ¶ms);
653 float params = 0.0f;
658 ctx.glGetSamplerParameterfv (-1, GL_TEXTURE_MAG_FILTER, ¶ms);
663 ctx.glGetSamplerParameterfv (sampler, -1, ¶ms);
727 ctx.beginSection("GL_INVALID_ENUM is generated if params should have a defined constant value (based on the value of pname) and does not.");
745 int params = 0x1234;
750 params = GL_CLAMP_TO_EDGE;
751 ctx.glSamplerParameteriv (-1, GL_TEXTURE_WRAP_S, ¶ms);
755 ctx.beginSection("GL_INVALID_ENUM is generated if params should have a defined constant value (based on the value of pname) and does not.");
756 params = -1;
757 ctx.glSamplerParameteriv (sampler, GL_TEXTURE_WRAP_S, ¶ms);
775 ctx.beginSection("GL_INVALID_ENUM is generated if params should have a defined constant value (based on the value of pname) and does not.");
793 float params;
798 params = -1000.0f;
799 ctx.glSamplerParameterfv (-1, GL_TEXTURE_WRAP_S, ¶ms);
803 ctx.beginSection("GL_INVALID_ENUM is generated if params should have a defined constant value (based on the value of pname) and does not.");
804 params = -1.0f;
805 ctx.glSamplerParameterfv (sampler, GL_TEXTURE_WRAP_S, ¶ms);
2563 int params[1] = { GL_LINEAR };
2569 params[0] = -1;
2570 ctx.glSamplerParameteriv(sampler, GL_TEXTURE_SRGB_DECODE_EXT, ¶ms[0]);
2582 float params[1] = { GL_LINEAR };
2587 params[0] = -1.0f;
2589 ctx.glSamplerParameterfv(sampler, GL_TEXTURE_SRGB_DECODE_EXT, ¶ms[0]);