| /third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
| D | MemoryObjectTest.cpp | 39 GLuint memoryObjects[kMemoryObjectCount]; in TEST_P() local 40 glCreateMemoryObjectsEXT(kMemoryObjectCount, memoryObjects); in TEST_P() 46 EXPECT_TRUE(glIsMemoryObjectEXT(memoryObjects[i])); in TEST_P() 49 glDeleteMemoryObjectsEXT(kMemoryObjectCount, memoryObjects); in TEST_P()
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/ |
| D | vktMemoryAllocationTests.cpp | 368 vector<VkDeviceMemory> memoryObjects (m_config.memoryAllocationCount, (VkDeviceMemory)0); in iterate() local 417 … = vkd.allocateMemory(device, &alloc, (const VkAllocationCallbacks*)DE_NULL, &memoryObjects[ndx]); in iterate() 427 TCU_CHECK(!!memoryObjects[ndx]); in iterate() 434 const VkDeviceMemory mem = memoryObjects[memoryObjects.size() - 1 - ndx]; in iterate() 439 memoryObjects[memoryObjects.size() - 1 - ndx] = (VkDeviceMemory) 0; in iterate() 447 const VkDeviceMemory mem = memoryObjects[ndx]; in iterate() 452 memoryObjects[ndx] = (VkDeviceMemory) 0; in iterate() 469 …CK(vkd.allocateMemory(device, &alloc, (const VkAllocationCallbacks*)DE_NULL, &memoryObjects[ndx])); in iterate() 470 TCU_CHECK(!!memoryObjects[ndx]); in iterate() 472 vkd.freeMemory(device, memoryObjects[ndx], (const VkAllocationCallbacks*)DE_NULL); in iterate() [all …]
|
| /third_party/mesa3d/src/mesa/main/ |
| D | externalobjects.c | 128 _mesa_DeleteMemoryObjectsEXT(GLsizei n, const GLuint *memoryObjects) in _mesa_DeleteMemoryObjectsEXT() argument 134 memoryObjects); in _mesa_DeleteMemoryObjectsEXT() 148 if (!memoryObjects) in _mesa_DeleteMemoryObjectsEXT() 153 if (memoryObjects[i] > 0) { in _mesa_DeleteMemoryObjectsEXT() 155 = _mesa_lookup_memory_object_locked(ctx, memoryObjects[i]); in _mesa_DeleteMemoryObjectsEXT() 159 memoryObjects[i]); in _mesa_DeleteMemoryObjectsEXT() 185 _mesa_CreateMemoryObjectsEXT(GLsizei n, GLuint *memoryObjects) in _mesa_CreateMemoryObjectsEXT() argument 192 _mesa_debug(ctx, "%s(%d, %p)", func, n, memoryObjects); in _mesa_CreateMemoryObjectsEXT() 204 if (!memoryObjects) in _mesa_CreateMemoryObjectsEXT() 208 if (_mesa_HashFindFreeKeys(ctx->Shared->MemoryObjects, memoryObjects, n)) { in _mesa_CreateMemoryObjectsEXT() [all …]
|
| /third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
| D | EXT_external_objects.txt | 101 const uint *memoryObjects); 106 uint *memoryObjects); 556 void CreateMemoryObjectsEXT(sizei n, uint *memoryObjects); 558 returns <n> previously unused memory object names in <memoryObjects>. 564 void DeleteMemoryObjectsEXT(sizei n, const uint *memoryObjects); 566 <memoryObjects> contains <n> names of memory objects to be deleted. 570 Unused names in <memoryObjects> are silently ignored, as is the
|
| /third_party/openGLES/extensions/EXT/ |
| D | EXT_external_objects.txt | 101 const uint *memoryObjects); 106 uint *memoryObjects); 557 void CreateMemoryObjectsEXT(sizei n, uint *memoryObjects); 559 returns <n> previously unused memory object names in <memoryObjects>. 565 void DeleteMemoryObjectsEXT(sizei n, const uint *memoryObjects); 567 <memoryObjects> contains <n> names of memory objects to be deleted. 571 Unused names in <memoryObjects> are silently ignored, as is the
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
| D | capture_gles_ext_params.cpp | 2497 MemoryObjectID *memoryObjects, in CaptureCreateMemoryObjectsEXT_memoryObjectsPacked() argument 2500 CaptureGenHandles(n, memoryObjects, paramCapture); in CaptureCreateMemoryObjectsEXT_memoryObjectsPacked() 2506 const MemoryObjectID *memoryObjects, in CaptureDeleteMemoryObjectsEXT_memoryObjectsPacked() argument 2509 CaptureArray(memoryObjects, n, paramCapture); in CaptureDeleteMemoryObjectsEXT_memoryObjectsPacked()
|
| D | FrameCapture.cpp | 1563 const ParamCapture &memoryObjects = in MaybeCaptureUpdateResourceIDs() local 1565 CaptureUpdateResourceIDs<gl::MemoryObjectID>(call, memoryObjects, callsOut); in MaybeCaptureUpdateResourceIDs()
|
| /third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
| D | entry_points_gles_ext_autogen.h | 870 ANGLE_EXPORT void GL_APIENTRY GL_CreateMemoryObjectsEXT(GLsizei n, GLuint *memoryObjects); 871 ANGLE_EXPORT void GL_APIENTRY GL_DeleteMemoryObjectsEXT(GLsizei n, const GLuint *memoryObjects);
|
| D | libGLESv2_autogen.cpp | 4164 void GL_APIENTRY glCreateMemoryObjectsEXT(GLsizei n, GLuint *memoryObjects) in glCreateMemoryObjectsEXT() argument 4166 return GL_CreateMemoryObjectsEXT(n, memoryObjects); in glCreateMemoryObjectsEXT() 4169 void GL_APIENTRY glDeleteMemoryObjectsEXT(GLsizei n, const GLuint *memoryObjects) in glDeleteMemoryObjectsEXT() argument 4171 return GL_DeleteMemoryObjectsEXT(n, memoryObjects); in glDeleteMemoryObjectsEXT()
|
| D | entry_points_gles_ext_autogen.cpp | 5354 void GL_APIENTRY GL_CreateMemoryObjectsEXT(GLsizei n, GLuint *memoryObjects) in GL_CreateMemoryObjectsEXT() argument 5359 (uintptr_t)memoryObjects); in GL_CreateMemoryObjectsEXT() 5363 MemoryObjectID *memoryObjectsPacked = PackParam<MemoryObjectID *>(memoryObjects); in GL_CreateMemoryObjectsEXT() 5381 void GL_APIENTRY GL_DeleteMemoryObjectsEXT(GLsizei n, const GLuint *memoryObjects) in GL_DeleteMemoryObjectsEXT() argument 5386 (uintptr_t)memoryObjects); in GL_DeleteMemoryObjectsEXT() 5391 PackParam<const MemoryObjectID *>(memoryObjects); in GL_DeleteMemoryObjectsEXT()
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/ |
| D | validationESEXT.cpp | 944 const MemoryObjectID *memoryObjects) in ValidateCreateMemoryObjectsEXT() argument 958 const MemoryObjectID *memoryObjects) in ValidateDeleteMemoryObjectsEXT() argument
|
| D | Context.cpp | 8434 void Context::deleteMemoryObjects(GLsizei n, const MemoryObjectID *memoryObjects) in deleteMemoryObjects() argument 8438 deleteMemoryObject(memoryObjects[i]); in deleteMemoryObjects() 8452 void Context::createMemoryObjects(GLsizei n, MemoryObjectID *memoryObjects) in createMemoryObjects() argument 8456 memoryObjects[i] = createMemoryObject(); in createMemoryObjects()
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
| D | functionsgl_typedefs.h | 1774 const GLuint *memoryObjects); 1777 GLuint *memoryObjects);
|
| D | null_functions.h | 400 void INTERNAL_GL_APIENTRY glCreateMemoryObjectsEXTNULL(GLsizei n, GLuint *memoryObjects); 430 void INTERNAL_GL_APIENTRY glDeleteMemoryObjectsEXTNULL(GLsizei n, const GLuint *memoryObjects);
|
| D | null_functions.cpp | 551 void INTERNAL_GL_APIENTRY glCreateMemoryObjectsEXTNULL(GLsizei n, GLuint *memoryObjects) {} in glCreateMemoryObjectsEXTNULL() argument 610 void INTERNAL_GL_APIENTRY glDeleteMemoryObjectsEXTNULL(GLsizei n, const GLuint *memoryObjects) {} in glDeleteMemoryObjectsEXTNULL() argument
|
| /third_party/skia/third_party/externals/swiftshader/include/GLES2/ |
| D | gl2ext.h | 1479 typedef void (GL_APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects… 1481 typedef void (GL_APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); 1497 GL_APICALL void GL_APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); 1499 GL_APICALL void GL_APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects);
|
| /third_party/mesa3d/include/GLES2/ |
| D | gl2ext.h | 1516 typedef void (GL_APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects… 1518 typedef void (GL_APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); 1534 GL_APICALL void GL_APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); 1536 GL_APICALL void GL_APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects);
|
| /third_party/skia/third_party/externals/opengl-registry/api/GLES2/ |
| D | gl2ext.h | 1479 typedef void (GL_APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects… 1481 typedef void (GL_APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); 1497 GL_APICALL void GL_APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); 1499 GL_APICALL void GL_APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects);
|
| /third_party/skia/third_party/externals/angle2/include/GLES2/ |
| D | gl2ext.h | 1504 typedef void (GL_APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects… 1506 typedef void (GL_APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); 1522 GL_APICALL void GL_APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); 1524 GL_APICALL void GL_APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects);
|
| /third_party/openGLES/api/GLES2/ |
| D | gl2ext.h | 1561 typedef void (GL_APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects… 1563 typedef void (GL_APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); 1579 GL_APICALL void GL_APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); 1581 GL_APICALL void GL_APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects);
|
| /third_party/mesa3d/include/GL/ |
| D | glext.h | 7713 typedef void (APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects); 7715 typedef void (APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); 7733 GLAPI void APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); 7735 GLAPI void APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects);
|
| /third_party/skia/third_party/externals/swiftshader/include/GL/ |
| D | glext.h | 7690 typedef void (APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects); 7692 typedef void (APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); 7710 GLAPI void APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); 7712 GLAPI void APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects);
|
| /third_party/openGLES/api/GL/ |
| D | glext.h | 7751 typedef void (APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects); 7753 typedef void (APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); 7771 GLAPI void APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); 7773 GLAPI void APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects);
|
| /third_party/skia/third_party/externals/opengl-registry/api/GL/ |
| D | glext.h | 7689 typedef void (APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects); 7691 typedef void (APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); 7709 GLAPI void APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); 7711 GLAPI void APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects);
|