Edit

kc3-lang/angle/src/common/packed_egl_enums.json

Branch :

  • Show log

    Commit

  • Author : Jeff Vigil
    Date : 2019-11-22 16:46:02
    Hash : 564eb6f2
    Message : Implement EGL_IMG_context_priority Change RendererVk to have 3 VkQueues instead of one. Each queue has a priority. To match extension: Low, Med, High. gl::Context contains priority. ContextVk contains a reference to one of the queues. Every call to vulkan that uses queue, uses the associated context queue. Bug: angleproject:3962 Change-Id: Ibd913a07a81c77bd975921d6dbae6a222842e88b Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1978154 Commit-Queue: Jeff Vigil <j.vigil@samsung.com> Commit-Queue: Mohan Maiya <m.maiya@samsung.com> Reviewed-by: Jamie Madill <jmadill@chromium.org>

  • src/common/packed_egl_enums.json
  • {
        "TextureFormat": {
            "NoTexture": "EGL_NO_TEXTURE",
            "RGB": "EGL_TEXTURE_RGB",
            "RGBA": "EGL_TEXTURE_RGBA"
        },
        "ObjectType": {
            "Thread": "EGL_OBJECT_THREAD_KHR",
            "Display": "EGL_OBJECT_DISPLAY_KHR",
            "Context": "EGL_OBJECT_CONTEXT_KHR",
            "Surface": "EGL_OBJECT_SURFACE_KHR",
            "Image": "EGL_OBJECT_IMAGE_KHR",
            "Sync": "EGL_OBJECT_SYNC_KHR",
            "Stream": "EGL_OBJECT_STREAM_KHR"
        },
        "MessageType": {
            "Critical": "EGL_DEBUG_MSG_CRITICAL_KHR",
            "Error": "EGL_DEBUG_MSG_ERROR_KHR",
            "Warn": "EGL_DEBUG_MSG_WARN_KHR",
            "Info": "EGL_DEBUG_MSG_INFO_KHR"
        },
        "CompositorTiming": {
            "CompositeDeadline": "EGL_COMPOSITE_DEADLINE_ANDROID",
            "CompositInterval": "EGL_COMPOSITE_INTERVAL_ANDROID",
            "CompositToPresentLatency": "EGL_COMPOSITE_TO_PRESENT_LATENCY_ANDROID"
        },
        "Timestamp": {
            "RequestedPresentTime": "EGL_REQUESTED_PRESENT_TIME_ANDROID",
            "RenderingCompleteTime": "EGL_RENDERING_COMPLETE_TIME_ANDROID",
            "CompositionLatchTime": "EGL_COMPOSITION_LATCH_TIME_ANDROID",
            "FirstCompositionStartTime": "EGL_FIRST_COMPOSITION_START_TIME_ANDROID",
            "LastCompositionStartTime": "EGL_LAST_COMPOSITION_START_TIME_ANDROID",
            "FirstCompositionGPUFinishedTime": "EGL_FIRST_COMPOSITION_GPU_FINISHED_TIME_ANDROID",
            "DisplayPresentTime": "EGL_DISPLAY_PRESENT_TIME_ANDROID",
            "DequeueReadyTime": "EGL_DEQUEUE_READY_TIME_ANDROID",
            "ReadsDoneTime": "EGL_READS_DONE_TIME_ANDROID"
        },
        "ContextPriority": {
            "Low": "EGL_CONTEXT_PRIORITY_LOW_IMG",
            "Medium": "EGL_CONTEXT_PRIORITY_MEDIUM_IMG",
            "High": "EGL_CONTEXT_PRIORITY_HIGH_IMG"
        }
    }