2014-05-08 13:57:05 -07:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
#ifndef GLUTILS_H
|
|
|
|
#define GLUTILS_H
|
|
|
|
|
2016-01-20 11:09:53 -08:00
|
|
|
#include "Debug.h"
|
|
|
|
|
2016-01-19 11:46:52 -08:00
|
|
|
#include <cutils/log.h>
|
|
|
|
|
2014-05-08 13:57:05 -07:00
|
|
|
namespace android {
|
|
|
|
namespace uirenderer {
|
|
|
|
|
2016-01-22 16:28:07 -08:00
|
|
|
|
2016-01-20 11:09:53 -08:00
|
|
|
#if DEBUG_OPENGL
|
2016-01-22 16:28:07 -08:00
|
|
|
#define GL_CHECKPOINT(LEVEL) \
|
|
|
|
do { if (DEBUG_OPENGL >= DEBUG_LEVEL_##LEVEL) {\
|
|
|
|
LOG_ALWAYS_FATAL_IF(GLUtils::dumpGLErrors(),\
|
|
|
|
"GL errors! %s:%d", __FILE__, __LINE__);\
|
|
|
|
} } while (0)
|
2016-01-19 11:46:52 -08:00
|
|
|
#else
|
2016-01-22 16:28:07 -08:00
|
|
|
#define GL_CHECKPOINT(LEVEL)
|
2016-01-19 11:46:52 -08:00
|
|
|
#endif
|
|
|
|
|
2014-05-08 13:57:05 -07:00
|
|
|
class GLUtils {
|
|
|
|
public:
|
|
|
|
/**
|
2015-06-23 10:33:46 -07:00
|
|
|
* Print out any GL errors with ALOGE, returns true if any errors were found.
|
2016-01-22 16:28:07 -08:00
|
|
|
* You probably want to use GL_CHECKPOINT(LEVEL) instead of calling this directly
|
2014-05-08 13:57:05 -07:00
|
|
|
*/
|
2015-06-23 10:33:46 -07:00
|
|
|
static bool dumpGLErrors();
|
2014-05-08 13:57:05 -07:00
|
|
|
|
|
|
|
}; // class GLUtils
|
|
|
|
|
|
|
|
} /* namespace uirenderer */
|
|
|
|
} /* namespace android */
|
|
|
|
|
|
|
|
#endif /* GLUTILS_H */
|