Home
last modified time | relevance | path

Searched refs:cbInfo (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/gpu/vk/
DGrVkGpuCommandBuffer.cpp91 CommandBufferInfo& cbInfo = fCommandBufferInfos.push_back(); in init() local
98 cbInfo.fRenderPass = fGpu->resourceProvider().findRenderPass(rpHandle, in init()
102 cbInfo.fRenderPass = fGpu->resourceProvider().findRenderPass(*vkRT, in init()
107 cbInfo.fColorClearValue.color.float32[0] = fClearColor[0]; in init()
108 cbInfo.fColorClearValue.color.float32[1] = fClearColor[1]; in init()
109 cbInfo.fColorClearValue.color.float32[2] = fClearColor[2]; in init()
110 cbInfo.fColorClearValue.color.float32[3] = fClearColor[3]; in init()
113 cbInfo.fBounds = SkRect::MakeWH(vkRT->width(), vkRT->height()); in init()
115 cbInfo.fBounds.setEmpty(); in init()
119 cbInfo.fLoadStoreState = LoadStoreState::kStartsWithClear; in init()
[all …]
/external/skqp/src/gpu/vk/
DGrVkGpuCommandBuffer.cpp90 CommandBufferInfo& cbInfo = fCommandBufferInfos.push_back(); in init() local
97 cbInfo.fRenderPass = fGpu->resourceProvider().findRenderPass(rpHandle, in init()
101 cbInfo.fRenderPass = fGpu->resourceProvider().findRenderPass(*vkRT, in init()
106 cbInfo.fColorClearValue.color.float32[0] = fClearColor[0]; in init()
107 cbInfo.fColorClearValue.color.float32[1] = fClearColor[1]; in init()
108 cbInfo.fColorClearValue.color.float32[2] = fClearColor[2]; in init()
109 cbInfo.fColorClearValue.color.float32[3] = fClearColor[3]; in init()
112 cbInfo.fBounds = SkRect::MakeWH(vkRT->width(), vkRT->height()); in init()
114 cbInfo.fBounds.setEmpty(); in init()
118 cbInfo.fLoadStoreState = LoadStoreState::kStartsWithClear; in init()
[all …]
/external/icu/icu4c/source/test/intltest/
Dregextst.cpp4793 callBackContext cbInfo = {this, 0, 0, 0}; in Callbacks() local
4799 matcher.setMatchCallback(testCallBackFn, &cbInfo, status); in Callbacks()
4804 REGEX_ASSERT(returnedContext == &cbInfo); in Callbacks()
4808 cbInfo.reset(1); in Callbacks()
4813 REGEX_ASSERT(cbInfo.numCalls == 0); in Callbacks()
4818 cbInfo.reset(4); in Callbacks()
4823 REGEX_ASSERT(cbInfo.numCalls > 0); in Callbacks()
4827 cbInfo.reset(4); in Callbacks()
4832 REGEX_ASSERT(cbInfo.numCalls == 4); in Callbacks()
4836 cbInfo.reset(4); in Callbacks()
[all …]
/external/icu/icu4c/source/test/cintltst/
Dreapits.c1325 callBackContext cbInfo = {4, 0, 0}; in TestRegexCAPI()
1326 const void *pContext = &cbInfo; in TestRegexCAPI()
1337 uregex_setMatchCallback(re, &TestCallbackFn, &cbInfo, &status); in TestRegexCAPI()
1339 TEST_ASSERT(cbInfo.numCalls == 0); in TestRegexCAPI()
1342 TEST_ASSERT(cbInfo.numCalls > 0); in TestRegexCAPI()
1347 TEST_ASSERT(pContext == &cbInfo); in TestRegexCAPI()