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 | 1182 cl_uint maxSamplers, i; in test_min_max_samplers() local 1195 …error = clGetDeviceInfo( deviceID, CL_DEVICE_MAX_SAMPLERS, sizeof( maxSamplers ), &maxSamplers, NU… in test_min_max_samplers() 1198 if( maxSamplers < minRequiredSamplers ) in test_min_max_samplers() 1200 … log_error( "ERROR: Reported max sampler count is less than required! (%d)\n", (int)maxSamplers ); in test_min_max_samplers() 1204 log_info("Reported max %d samplers.\n", maxSamplers); in test_min_max_samplers() 1213 if (maxParameterSize/sizeof(cl_sampler) < maxSamplers) { in test_min_max_samplers() 1215 maxSamplers = (unsigned int)(maxParameterSize/sizeof(cl_sampler)); in test_min_max_samplers() 1219 …ogramSrc = (char *)malloc( ( strlen( sample_sampler_kernel_pattern[ 1 ] ) + 8 ) * ( maxSamplers ) + in test_min_max_samplers() 1221 ( strlen( sample_sampler_kernel_pattern[ 3 ] ) + 8 ) * maxSamplers + in test_min_max_samplers() 1224 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 | 409 GrGLint maxSamplers; in init() local 410 GR_GL_GetIntegerv(gli, GR_GL_MAX_TEXTURE_IMAGE_UNITS, &maxSamplers); in init() 411 shaderCaps->fMaxFragmentSamplers = std::min<GrGLint>(kMaxSaneSamplers, maxSamplers); in init()
|