Home
last modified time | relevance | path

Searched refs:bufferObj (Results 1 – 10 of 10) sorted by relevance

/external/mesa3d/src/mesa/vbo/
Dvbo_minmax_index.c77 vbo_use_minmax_cache(struct gl_buffer_object *bufferObj) in vbo_use_minmax_cache() argument
79 if (bufferObj->UsageHistory & (USAGE_TEXTURE_BUFFER | in vbo_use_minmax_cache()
87 if ((bufferObj->Mappings[MAP_USER].AccessFlags & in vbo_use_minmax_cache()
97 vbo_delete_minmax_cache(struct gl_buffer_object *bufferObj) in vbo_delete_minmax_cache() argument
99 _mesa_hash_table_destroy(bufferObj->MinMaxCache, vbo_minmax_cache_delete_entry); in vbo_delete_minmax_cache()
100 bufferObj->MinMaxCache = NULL; in vbo_delete_minmax_cache()
105 vbo_get_minmax_cached(struct gl_buffer_object *bufferObj, in vbo_get_minmax_cached() argument
114 if (!bufferObj->MinMaxCache) in vbo_get_minmax_cached()
116 if (!vbo_use_minmax_cache(bufferObj)) in vbo_get_minmax_cached()
119 simple_mtx_lock(&bufferObj->MinMaxCacheMutex); in vbo_get_minmax_cached()
[all …]
Dvbo.h220 vbo_delete_minmax_cache(struct gl_buffer_object *bufferObj);
/external/skia/platform_tools/android/apps/skottie/skottielib/src/main/cpp/
Dnative-lib.cpp120 jobject bufferObj) { in Java_org_skia_skottie_SkottieAnimation_nCreateProxy() argument
127 const void* buffer = env->GetDirectBufferAddress(bufferObj); in Java_org_skia_skottie_SkottieAnimation_nCreateProxy()
128 jlong bufferSize = env->GetDirectBufferCapacity(bufferObj); in Java_org_skia_skottie_SkottieAnimation_nCreateProxy()
134 jobject bufferRef = env->NewGlobalRef(bufferObj); in Java_org_skia_skottie_SkottieAnimation_nCreateProxy()
/external/mesa3d/src/mesa/main/
Dbufferobj.c4903 struct gl_buffer_object *bufferObj, in buffer_page_commitment() argument
4907 if (!(bufferObj->StorageFlags & GL_SPARSE_STORAGE_BIT_ARB)) { in buffer_page_commitment()
4913 if (size < 0 || size > bufferObj->Size || in buffer_page_commitment()
4914 offset < 0 || offset > bufferObj->Size - size) { in buffer_page_commitment()
4934 offset + size != bufferObj->Size) { in buffer_page_commitment()
4940 ctx->Driver.BufferPageCommitment(ctx, bufferObj, offset, size, commit); in buffer_page_commitment()
4948 struct gl_buffer_object *bufferObj; in _mesa_BufferPageCommitmentARB() local
4950 bufferObj = get_buffer(ctx, "glBufferPageCommitmentARB", target, in _mesa_BufferPageCommitmentARB()
4952 if (!bufferObj) in _mesa_BufferPageCommitmentARB()
4955 buffer_page_commitment(ctx, bufferObj, offset, size, commit, in _mesa_BufferPageCommitmentARB()
[all …]
Ddd.h1137 struct gl_buffer_object *bufferObj,
/external/mesa3d/docs/
Dcodingstyle.rst47 bufferObj = NULL;
53 bufferObj = NULL; /* prevent dangling reference below */
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_bufferobjects.c645 struct gl_buffer_object *bufferObj, in st_bufferobj_page_commitment() argument
650 struct st_buffer_object *buf = st_buffer_object(bufferObj); in st_bufferobj_page_commitment()
/external/deqp-deps/glslang/glslang/HLSL/
DhlslParseHelper.cpp3388 TIntermTyped* bufferObj = nullptr; in decomposeStructBufferMethods() local
3395 bufferObj = argAggregate->getSequence()[0]->getAsTyped(); in decomposeStructBufferMethods()
3397 bufferObj = arguments->getAsSymbolNode(); in decomposeStructBufferMethods()
3400 if (bufferObj == nullptr || bufferObj->getAsSymbolNode() == nullptr) in decomposeStructBufferMethods()
3407 TIntermTyped* counter = getStructBufferCounter(loc, bufferObj); // obtain the counter member in decomposeStructBufferMethods()
3422 TIntermTyped* argArray = indexStructBufferContent(loc, bufferObj); in decomposeStructBufferMethods()
3431 const TType& bufferType = bufferObj->getType(); in decomposeStructBufferMethods()
/external/angle/third_party/vulkan-deps/glslang/src/glslang/HLSL/
DhlslParseHelper.cpp3388 TIntermTyped* bufferObj = nullptr; in decomposeStructBufferMethods() local
3395 bufferObj = argAggregate->getSequence()[0]->getAsTyped(); in decomposeStructBufferMethods()
3397 bufferObj = arguments->getAsSymbolNode(); in decomposeStructBufferMethods()
3400 if (bufferObj == nullptr || bufferObj->getAsSymbolNode() == nullptr) in decomposeStructBufferMethods()
3407 TIntermTyped* counter = getStructBufferCounter(loc, bufferObj); // obtain the counter member in decomposeStructBufferMethods()
3422 TIntermTyped* argArray = indexStructBufferContent(loc, bufferObj); in decomposeStructBufferMethods()
3431 const TType& bufferType = bufferObj->getType(); in decomposeStructBufferMethods()
/external/angle/src/libANGLE/
DContext.cpp2286 Buffer *bufferObj = mState.mBufferManager->getBuffer(buffer); in texBuffer() local
2287 ANGLE_CONTEXT_TRY(texture->setBuffer(this, bufferObj, internalformat)); in texBuffer()
2299 Buffer *bufferObj = mState.mBufferManager->getBuffer(buffer); in texBufferRange() local
2300 ANGLE_CONTEXT_TRY(texture->setBufferRange(this, bufferObj, internalformat, offset, size)); in texBufferRange()