/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | TranslatorVulkan.cpp | 262 const DriverUniform *driverUniforms, in ReplaceGLDepthRangeWithDriverUniform() argument 270 TIntermBinary *angleEmulatedDepthRangeRef = driverUniforms->getDepthRangeRef(); in ReplaceGLDepthRangeWithDriverUniform() 333 const DriverUniform *driverUniforms) in AddBresenhamEmulationVS() argument 341 TIntermBinary *viewportRef = driverUniforms->getViewportRef(); in AddBresenhamEmulationVS() 404 const DriverUniform *driverUniforms) in AddXfbEmulationSupport() argument 433 TIntermBinary *xfbVerticesPerInstance = driverUniforms->getXfbVerticesPerInstance(); in AddXfbEmulationSupport() 434 TIntermBinary *xfbBufferOffsets = driverUniforms->getXfbBufferOffsets(); in AddXfbEmulationSupport() 497 TIntermBinary *xfbActiveUnpaused = driverUniforms->getXfbActiveUnpaused(); in AddXfbEmulationSupport() 576 const DriverUniform *driverUniforms) in AddXfbExtensionSupport() argument 621 const DriverUniform *driverUniforms) in InsertFragCoordCorrection() argument [all …]
|
D | TranslatorMetalDirect.cpp | 197 const DriverUniformMetal *driverUniforms, in ReplaceGLDepthRangeWithDriverUniform() argument 205 TIntermBinary *angleEmulatedDepthRangeRef = driverUniforms->getDepthRangeRef(); in ReplaceGLDepthRangeWithDriverUniform() 291 const DriverUniformMetal *driverUniforms) in InsertFragCoordCorrection() argument 296 flipXY = driverUniforms->getFlipXYRef(); in InsertFragCoordCorrection() 302 pivot = driverUniforms->getHalfRenderAreaRef(); in InsertFragCoordCorrection() 311 fragRotation = driverUniforms->getFragRotationMatrixRef(); in InsertFragCoordCorrection() 414 DriverUniform &driverUniforms) in EmulateInstanceID() argument 416 TIntermBinary *emuInstanceID = driverUniforms.getEmulatedInstanceId(); in EmulateInstanceID() 481 DriverUniformMetal &driverUniforms) in insertSampleMaskWritingLogic() argument 518 TIntermBinary *coverageMask = driverUniforms.getCoverageMaskFieldRef(); in insertSampleMaskWritingLogic() [all …]
|
D | TranslatorMetal.cpp | 123 DriverUniformMetal driverUniforms; in translate() local 125 &driverUniforms)) in translate() 138 TIntermTyped *negFlipY = driverUniforms.getNegFlipYRef(); in translate() 154 if (!insertSampleMaskWritingLogic(sink, root, &driverUniforms)) in translate() 191 const DriverUniform *driverUniforms) in transformDepthBeforeCorrection() argument 202 TIntermBinary *viewportZScale = driverUniforms->getDepthRangeReservedFieldRef(); in transformDepthBeforeCorrection() 220 const DriverUniformMetal *driverUniforms) in insertSampleMaskWritingLogic() argument 258 TIntermBinary *coverageMask = driverUniforms->getCoverageMaskFieldRef(); in insertSampleMaskWritingLogic()
|
D | TranslatorMetalDirect.h | 184 DriverUniformMetal *driverUniforms); 189 const DriverUniformMetal *driverUniforms); 194 DriverUniformMetal &driverUniforms); 198 DriverUniform &driverUniforms) const;
|
D | TranslatorVulkan.h | 42 DriverUniform *driverUniforms); 50 const DriverUniform *driverUniforms) in transformDepthBeforeCorrection() argument
|
D | TranslatorMetal.h | 51 const DriverUniform *driverUniforms) override; 55 const DriverUniformMetal *driverUniforms);
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/vulkan/ |
D | RewriteInterpolateAtOffset.cpp | 34 const DriverUniform *driverUniforms); 41 const DriverUniform *driverUniforms); 55 const DriverUniform *driverUniforms) in Traverser() argument 60 mDriverUniforms(driverUniforms), in Traverser() 71 const DriverUniform *driverUniforms) in Apply() argument 74 Traverser traverser(pSymbolTable, compileOptions, shaderVersion, specConst, driverUniforms); in Apply() 151 const DriverUniform *driverUniforms) in RewriteInterpolateAtOffset() argument 160 driverUniforms); in RewriteInterpolateAtOffset()
|
D | RewriteInterpolateAtOffset.h | 38 const DriverUniform *driverUniforms);
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/ |
D | RewriteDfdy.cpp | 33 const DriverUniform *driverUniforms); 39 const DriverUniform *driverUniforms); 53 const DriverUniform *driverUniforms) in Traverser() argument 56 mDriverUniforms(driverUniforms), in Traverser() 66 const DriverUniform *driverUniforms) in Apply() argument 69 Traverser traverser(pSymbolTable, compileOptions, specConst, driverUniforms); in Apply() 224 const DriverUniform *driverUniforms) in RewriteDfdy() argument 230 return Traverser::Apply(compiler, compileOptions, root, symbolTable, specConst, driverUniforms); in RewriteDfdy()
|
D | RewriteDfdy.h | 39 const DriverUniform *driverUniforms);
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | ContextVk.cpp | 725 for (DriverUniformsDescriptorSet &driverUniforms : mDriverUniforms) in onDestroy() 727 driverUniforms.destroy(mRenderer); in onDestroy() 5005 GraphicsDriverUniforms *driverUniforms; in handleDirtyGraphicsDriverUniforms() local 5069 driverUniforms = &driverUniformsExt->common; in handleDirtyGraphicsDriverUniforms() 5073 driverUniforms = reinterpret_cast<GraphicsDriverUniforms *>(ptr); in handleDirtyGraphicsDriverUniforms() 5092 *driverUniforms = { in handleDirtyGraphicsDriverUniforms() 5108 driverUniforms->xfbBufferOffsets.data(), in handleDirtyGraphicsDriverUniforms() 5109 driverUniforms->xfbBufferOffsets.size()); in handleDirtyGraphicsDriverUniforms() 5114 writeAtomicCounterBufferDriverUniformOffsets(driverUniforms->acbBufferOffsets.data(), in handleDirtyGraphicsDriverUniforms() 5115 driverUniforms->acbBufferOffsets.size()); in handleDirtyGraphicsDriverUniforms() [all …]
|
D | ContextVk.h | 926 DriverUniformsDescriptorSet *driverUniforms); 932 DriverUniformsDescriptorSet *driverUniforms,
|