STT-tensorflow/tensorflow/lite/delegates/gpu/gl/egl_surface.cc
Juhyun Lee fb772b781b Published the GPU delegates.
PiperOrigin-RevId: 240848313
2019-03-28 14:09:57 -07:00

72 lines
2.5 KiB
C++

/* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/lite/delegates/gpu/gl/egl_surface.h"
#include "tensorflow/lite/delegates/gpu/common/status.h"
#include "tensorflow/lite/delegates/gpu/gl/gl_call.h"
#include "tensorflow/lite/delegates/gpu/gl/gl_errors.h"
namespace tflite {
namespace gpu {
namespace gl {
EglSurface::EglSurface(EglSurface&& other)
: surface_(other.surface_), display_(other.display_) {
other.surface_ = EGL_NO_SURFACE;
}
EglSurface& EglSurface::operator=(EglSurface&& other) {
if (this != &other) {
display_ = other.display_;
Invalidate();
std::swap(surface_, other.surface_);
}
return *this;
}
void EglSurface::Invalidate() {
if (surface_ != EGL_NO_SURFACE) {
eglDestroySurface(display_, surface_);
surface_ = EGL_NO_SURFACE;
}
}
Status CreatePbufferRGBSurface(EGLConfig config, EGLDisplay display,
uint32_t height, uint32_t width,
EglSurface* egl_surface) {
const EGLint pbuffer_attributes[] = {EGL_WIDTH,
static_cast<EGLint>(width),
EGL_HEIGHT,
static_cast<EGLint>(height),
EGL_TEXTURE_FORMAT,
EGL_TEXTURE_RGB,
EGL_TEXTURE_TARGET,
EGL_TEXTURE_2D,
EGL_NONE};
EGLSurface surface =
eglCreatePbufferSurface(display, config, pbuffer_attributes);
RETURN_IF_ERROR(GetOpenGlErrors());
if (surface == EGL_NO_SURFACE) {
return InternalError("No EGL error, but eglCreatePbufferSurface failed");
}
*egl_surface = EglSurface(surface, display);
return OkStatus();
}
} // namespace gl
} // namespace gpu
} // namespace tflite