Lines Matching refs:textureSamplerState
2444 const gl::SamplerState &textureSamplerState = texture->getSamplerState(); in CaptureSharedContextMidExecutionSetup() local
2454 if (textureSamplerState.getMinFilter() != defaultSamplerState.getMinFilter()) in CaptureSharedContextMidExecutionSetup()
2456 capTexParam(GL_TEXTURE_MIN_FILTER, textureSamplerState.getMinFilter()); in CaptureSharedContextMidExecutionSetup()
2459 if (textureSamplerState.getMagFilter() != defaultSamplerState.getMagFilter()) in CaptureSharedContextMidExecutionSetup()
2461 capTexParam(GL_TEXTURE_MAG_FILTER, textureSamplerState.getMagFilter()); in CaptureSharedContextMidExecutionSetup()
2464 if (textureSamplerState.getWrapR() != defaultSamplerState.getWrapR()) in CaptureSharedContextMidExecutionSetup()
2466 capTexParam(GL_TEXTURE_WRAP_R, textureSamplerState.getWrapR()); in CaptureSharedContextMidExecutionSetup()
2469 if (textureSamplerState.getWrapS() != defaultSamplerState.getWrapS()) in CaptureSharedContextMidExecutionSetup()
2471 capTexParam(GL_TEXTURE_WRAP_S, textureSamplerState.getWrapS()); in CaptureSharedContextMidExecutionSetup()
2474 if (textureSamplerState.getWrapT() != defaultSamplerState.getWrapT()) in CaptureSharedContextMidExecutionSetup()
2476 capTexParam(GL_TEXTURE_WRAP_T, textureSamplerState.getWrapT()); in CaptureSharedContextMidExecutionSetup()
2479 if (textureSamplerState.getMinLod() != defaultSamplerState.getMinLod()) in CaptureSharedContextMidExecutionSetup()
2481 capTexParamf(GL_TEXTURE_MIN_LOD, textureSamplerState.getMinLod()); in CaptureSharedContextMidExecutionSetup()
2484 if (textureSamplerState.getMaxLod() != defaultSamplerState.getMaxLod()) in CaptureSharedContextMidExecutionSetup()
2486 capTexParamf(GL_TEXTURE_MAX_LOD, textureSamplerState.getMaxLod()); in CaptureSharedContextMidExecutionSetup()
2489 if (textureSamplerState.getCompareMode() != defaultSamplerState.getCompareMode()) in CaptureSharedContextMidExecutionSetup()
2491 capTexParam(GL_TEXTURE_COMPARE_MODE, textureSamplerState.getCompareMode()); in CaptureSharedContextMidExecutionSetup()
2494 if (textureSamplerState.getCompareFunc() != defaultSamplerState.getCompareFunc()) in CaptureSharedContextMidExecutionSetup()
2496 capTexParam(GL_TEXTURE_COMPARE_FUNC, textureSamplerState.getCompareFunc()); in CaptureSharedContextMidExecutionSetup()