Home
last modified time | relevance | path

Searched refs:primProcTextures (Results 1 – 11 of 11) sorted by relevance

/external/skqp/src/gpu/gl/
DGrGLProgram.cpp79 const GrTextureProxy* const primProcTextures[]) { in updateUniformsAndTextureBindings() argument
90 if (primProcTextures) { in updateUniformsAndTextureBindings()
91 this->updatePrimitiveProcessorTextureBindings(primProc, primProcTextures); in updateUniformsAndTextureBindings()
DGrGLGpu.cpp1932 const GrTextureProxy* const primProcTextures[], in resolveAndGenerateMipMapsForProcessorTextures() argument
1951 GrTexture* texture = primProcTextures[tex]->peekTexture(); in resolveAndGenerateMipMapsForProcessorTextures()
/external/skia/src/gpu/vk/
DGrVkPipelineState.cpp132 const GrSurfaceProxy* const primProcTextures[], in setAndBindTextures() argument
134 SkASSERT(primProcTextures || !primProc.numTextureSamplers()); in setAndBindTextures()
144 SkASSERT(primProcTextures[i]->asTextureProxy()); in setAndBindTextures()
146 auto texture = static_cast<GrVkTexture*>(primProcTextures[i]->peekTexture()); in setAndBindTextures()
/external/skqp/src/gpu/vk/
DGrVkPipelineState.cpp200 const GrTextureProxy* const primProcTextures[], in setAndBindTextures() argument
202 SkASSERT(primProcTextures || !primProc.numTextureSamplers()); in setAndBindTextures()
215 auto texture = static_cast<GrVkTexture*>(primProcTextures[i]->peekTexture()); in setAndBindTextures()
/external/skia/src/gpu/mtl/
DGrMtlPipelineState.mm83 const GrSurfaceProxy* const primProcTextures[]) {
86 SkASSERT(primProcTextures[i]->asTextureProxy());
88 auto texture = static_cast<GrMtlTexture*>(primProcTextures[i]->peekTexture());
DGrMtlPipelineState.h52 const GrSurfaceProxy* const primProcTextures[]);
/external/skqp/src/gpu/mtl/
DGrMtlPipelineState.mm67 const GrTextureProxy* const primProcTextures[]) {
68 SkASSERT(primProcTextures || !primProc.numTextureSamplers());
76 auto texture = static_cast<GrMtlTexture*>(primProcTextures[i]->peekTexture());
DGrMtlPipelineState.h52 const GrTextureProxy* const primProcTextures[]);
/external/skia/src/gpu/dawn/
DGrDawnProgramBuilder.h70 const GrSurfaceProxy* const primProcTextures[]);
DGrDawnProgramBuilder.cpp540 const GrSurfaceProxy* const primProcTextures[]) { in setTextures() argument
545 if (primProcTextures) { in setTextures()
547 SkASSERT(primProcTextures[i]->asTextureProxy()); in setTextures()
549 set_texture(gpu, sampler.samplerState(), primProcTextures[i]->peekTexture(), &bindings, in setTextures()
/external/skia/src/gpu/gl/
DGrGLGpu.cpp1846 auto* primProcTextures = (programInfo.hasFixedPrimProcTextures()) in flushGLState() local
1848 fHWProgram->bindTextures(programInfo.primProc(), programInfo.pipeline(), primProcTextures); in flushGLState()