Searched refs:maxSamplers (Results 1 – 5 of 5) sorted by relevance
/external/deqp/framework/randomshaders/ |
D | rsgParameters.hpp | 60 , maxSamplers (8) in ShaderParameters() 75 int maxSamplers; member in rsg::ShaderParameters
|
D | rsgExpression.cpp | 1487 …ool canAllocSampler = sampler2DCount + samplerCubeCount < state.getShaderParameters().maxSamplers; in TexLookup()
|
/external/OpenCL-CTS/test_conformance/api/ |
D | test_api_min_max.cpp | 1190 cl_uint maxSamplers, i; in test_min_max_samplers() local 1203 …error = clGetDeviceInfo( deviceID, CL_DEVICE_MAX_SAMPLERS, sizeof( maxSamplers ), &maxSamplers, NU… in test_min_max_samplers() 1206 if( maxSamplers < minRequiredSamplers ) in test_min_max_samplers() 1208 … log_error( "ERROR: Reported max sampler count is less than required! (%d)\n", (int)maxSamplers ); in test_min_max_samplers() 1212 log_info("Reported max %d samplers.\n", maxSamplers); in test_min_max_samplers() 1221 if (maxParameterSize/sizeof(cl_sampler) < maxSamplers) { in test_min_max_samplers() 1223 maxSamplers = (unsigned int)(maxParameterSize/sizeof(cl_sampler)); in test_min_max_samplers() 1227 …ogramSrc = (char *)malloc( ( strlen( sample_sampler_kernel_pattern[ 1 ] ) + 8 ) * ( maxSamplers ) + in test_min_max_samplers() 1229 ( strlen( sample_sampler_kernel_pattern[ 3 ] ) + 8 ) * maxSamplers + in test_min_max_samplers() 1232 for( i = 0; i < maxSamplers; i++ ) in test_min_max_samplers() [all …]
|
/external/skqp/src/gpu/gl/ |
D | GrGLCaps.cpp | 375 GrGLint maxSamplers; in init() local 376 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers); in init() 377 shaderCaps->fMaxFragmentSamplers = SkTMin<GrGLint>(kMaxSaneSamplers, maxSamplers); in init()
|
/external/skia/src/gpu/gl/ |
D | GrGLCaps.cpp | 399 GrGLint maxSamplers; in init() local 400 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers); in init() 401 shaderCaps->fMaxFragmentSamplers = std::min<GrGLint>(kMaxSaneSamplers, maxSamplers); in init()
|