Hash :
669acb00
Author :
Date :
2021-06-08T13:36:38
Add YUV format utils and validation code 1. Add YuvFormatInfo struct and a few YUV format helpers 2. Update ES3 validation code to account for YUV formats Bug: angleproject:5773 Change-Id: I82ababe8bf2a065e7d5c4f868e4a512ba8c9d7d2 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2947766 Commit-Queue: Mohan Maiya <m.maiya@samsung.com> Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Shahbaz Youssefi <syoussefi@chromium.org>
//
// Copyright 2021 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// CLCommandQueueImpl.cpp: Implements the class methods for CLCommandQueueImpl.
#include "libANGLE/renderer/CLCommandQueueImpl.h"
namespace rx
{
CLCommandQueueImpl::CLCommandQueueImpl(const cl::CommandQueue &commandQueue)
: mCommandQueue(commandQueue)
{}
CLCommandQueueImpl::~CLCommandQueueImpl() = default;
} // namespace rx