1 #ifndef _ES31FNEGATIVETESTSHARED_HPP 2 #define _ES31FNEGATIVETESTSHARED_HPP 3 /*------------------------------------------------------------------------- 4 * drawElements Quality Program OpenGL ES 3.1 Module 5 * ------------------------------------------------- 6 * 7 * Copyright 2014 The Android Open Source Project 8 * 9 * Licensed under the Apache License, Version 2.0 (the "License"); 10 * you may not use this file except in compliance with the License. 11 * You may obtain a copy of the License at 12 * 13 * http://www.apache.org/licenses/LICENSE-2.0 14 * 15 * Unless required by applicable law or agreed to in writing, software 16 * distributed under the License is distributed on an "AS IS" BASIS, 17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 18 * See the License for the specific language governing permissions and 19 * limitations under the License. 20 * 21 *//*! 22 * \file 23 * \brief Shared structures for ES 3.1 negative API tests 24 *//*--------------------------------------------------------------------*/ 25 26 #include "tcuDefs.hpp" 27 #include "glwDefs.hpp" 28 #include "gluCallLogWrapper.hpp" 29 #include "gluShaderUtil.hpp" 30 #include "tes31TestCase.hpp" 31 32 namespace tcu 33 { 34 35 class ResultCollector; 36 37 } // namespace tcu 38 39 namespace deqp 40 { 41 namespace gles31 42 { 43 namespace Functional 44 { 45 namespace NegativeTestShared 46 { 47 48 class ErrorCase : public TestCase 49 { 50 public: 51 ErrorCase(Context &ctx, const char *name, const char *desc); ~ErrorCase(void)52 virtual ~ErrorCase(void) 53 { 54 } 55 56 virtual void expectError(glw::GLenum error0, glw::GLenum error1) = 0; 57 }; 58 59 class NegativeTestContext : public glu::CallLogWrapper 60 { 61 public: 62 NegativeTestContext(ErrorCase &host, glu::RenderContext &renderCtx, const glu::ContextInfo &ctxInfo, 63 tcu::TestLog &log, tcu::ResultCollector &results, bool enableLog); 64 ~NegativeTestContext(); 65 66 const tcu::ResultCollector &getResults(void) const; 67 68 void fail(const std::string &msg); 69 int getInteger(glw::GLenum pname) const; getRenderContext(void) const70 const glu::RenderContext &getRenderContext(void) const 71 { 72 return m_renderCtx; 73 } getContextInfo(void) const74 const glu::ContextInfo &getContextInfo(void) const 75 { 76 return m_ctxInfo; 77 } 78 void beginSection(const std::string &desc); 79 void endSection(void); 80 81 void expectError(glw::GLenum error); 82 void expectError(glw::GLenum error0, glw::GLenum error1); 83 bool isShaderSupported(glu::ShaderType shaderType); 84 bool isExtensionSupported(std::string extension); 85 86 protected: 87 ErrorCase &m_host; 88 89 private: 90 glu::RenderContext &m_renderCtx; 91 const glu::ContextInfo &m_ctxInfo; 92 tcu::ResultCollector &m_results; 93 int m_openSections; 94 }; 95 96 typedef void (*TestFunc)(NegativeTestContext &ctx); 97 98 struct FunctionContainer 99 { 100 TestFunc function; 101 const char *name; 102 const char *desc; 103 }; 104 105 } // namespace NegativeTestShared 106 } // namespace Functional 107 } // namespace gles31 108 } // namespace deqp 109 110 #endif // _ES31FNEGATIVETESTSHARED_HPP 111