Home
last modified time | relevance | path

Searched refs:m_po_sampler_uniform_location (Results 1 – 2 of 2) sorted by relevance

/external/deqp/external/openglcts/modules/gl/
Dgl4cGPUShaderFP64Tests.cpp1632 , m_po_sampler_uniform_location(0) in GPUShaderFP64Test1()
2063 m_po_sampler_uniform_location = gl.getUniformLocation(m_po_id, "uniform_sampler"); in initTest()
2102 m_po_sampler_uniform_location == -1 || m_po_uint_arr_uniform_location == -1 || in initTest()
2370 gl.uniform1d(m_po_sampler_uniform_location, 0.0); in verifyErrorGenerationWhenCallingDoubleUniformFunctionsForSamplers()
2373 gl.uniform2d(m_po_sampler_uniform_location, 0.0, 1.0); in verifyErrorGenerationWhenCallingDoubleUniformFunctionsForSamplers()
2376 gl.uniform3d(m_po_sampler_uniform_location, 0.0, 1.0, 2.0); in verifyErrorGenerationWhenCallingDoubleUniformFunctionsForSamplers()
2379 gl.uniform4d(m_po_sampler_uniform_location, 0.0, 1.0, 2.0, 3.0); in verifyErrorGenerationWhenCallingDoubleUniformFunctionsForSamplers()
2383 gl.uniform1dv(m_po_sampler_uniform_location, 1 /* count */, double_data); in verifyErrorGenerationWhenCallingDoubleUniformFunctionsForSamplers()
2386 gl.uniform2dv(m_po_sampler_uniform_location, 1 /* count */, double_data); in verifyErrorGenerationWhenCallingDoubleUniformFunctionsForSamplers()
2389 gl.uniform3dv(m_po_sampler_uniform_location, 1 /* count */, double_data); in verifyErrorGenerationWhenCallingDoubleUniformFunctionsForSamplers()
[all …]
Dgl4cGPUShaderFP64Tests.hpp302 glw::GLint m_po_sampler_uniform_location; member in gl4cts::GPUShaderFP64Test1