Romain Guy | bd0e6aa | 2010-07-22 18:50:12 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 17 | #ifndef ANDROID_HWUI_EXTENSIONS_H |
| 18 | #define ANDROID_HWUI_EXTENSIONS_H |
Romain Guy | bd0e6aa | 2010-07-22 18:50:12 -0700 | [diff] [blame] | 19 | |
| 20 | #include <utils/SortedVector.h> |
| 21 | #include <utils/String8.h> |
| 22 | |
| 23 | #include <GLES2/gl2.h> |
| 24 | #include <GLES2/gl2ext.h> |
| 25 | |
Romain Guy | a60c388 | 2011-08-01 15:28:16 -0700 | [diff] [blame] | 26 | #include "Debug.h" |
| 27 | |
Romain Guy | bd0e6aa | 2010-07-22 18:50:12 -0700 | [diff] [blame] | 28 | namespace android { |
| 29 | namespace uirenderer { |
| 30 | |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 31 | /////////////////////////////////////////////////////////////////////////////// |
| 32 | // Defines |
| 33 | /////////////////////////////////////////////////////////////////////////////// |
| 34 | |
| 35 | // Debug |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 36 | #if DEBUG_EXTENSIONS |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 37 | #define EXT_LOGD(...) ALOGD(__VA_ARGS__) |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 38 | #else |
| 39 | #define EXT_LOGD(...) |
| 40 | #endif |
| 41 | |
Romain Guy | a60c388 | 2011-08-01 15:28:16 -0700 | [diff] [blame] | 42 | // Vendor strings |
| 43 | |
| 44 | #define VENDOR_IMG "Imagination Technologies" |
| 45 | |
| 46 | /////////////////////////////////////////////////////////////////////////////// |
| 47 | // Classes |
| 48 | /////////////////////////////////////////////////////////////////////////////// |
| 49 | |
Romain Guy | bd0e6aa | 2010-07-22 18:50:12 -0700 | [diff] [blame] | 50 | class Extensions { |
| 51 | public: |
| 52 | Extensions() { |
| 53 | const char* buffer = (const char*) glGetString(GL_EXTENSIONS); |
| 54 | const char* current = buffer; |
| 55 | const char* head = current; |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 56 | EXT_LOGD("Available GL extensions:"); |
Romain Guy | bd0e6aa | 2010-07-22 18:50:12 -0700 | [diff] [blame] | 57 | do { |
| 58 | head = strchr(current, ' '); |
| 59 | String8 s(current, head ? head - current : strlen(current)); |
| 60 | if (s.length()) { |
| 61 | mExtensionList.add(s); |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 62 | EXT_LOGD(" %s", s.string()); |
Romain Guy | bd0e6aa | 2010-07-22 18:50:12 -0700 | [diff] [blame] | 63 | } |
| 64 | current = head + 1; |
| 65 | } while (head); |
| 66 | |
| 67 | mHasNPot = hasExtension("GL_OES_texture_npot"); |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 68 | mHasFramebufferFetch = hasExtension("GL_NV_shader_framebuffer_fetch"); |
Romain Guy | 9c4b79a | 2011-11-10 19:23:58 -0800 | [diff] [blame] | 69 | mHasDiscardFramebuffer = hasExtension("GL_EXT_discard_framebuffer"); |
Romain Guy | 13631f3 | 2012-01-30 17:41:55 -0800 | [diff] [blame^] | 70 | mHasDebugMarker = hasExtension("GL_EXT_debug_marker"); |
Romain Guy | 51769a6 | 2010-07-23 00:28:00 -0700 | [diff] [blame] | 71 | |
Romain Guy | a60c388 | 2011-08-01 15:28:16 -0700 | [diff] [blame] | 72 | const char* vendor = (const char*) glGetString(GL_VENDOR); |
| 73 | EXT_LOGD("Vendor: %s", vendor); |
| 74 | mNeedsHighpTexCoords = strcmp(vendor, VENDOR_IMG) == 0; |
| 75 | |
| 76 | // We don't need to copy the string, the OpenGL ES spec |
| 77 | // guarantees the result of glGetString to point to a |
| 78 | // static string as long as our OpenGL context is valid |
Romain Guy | 51769a6 | 2010-07-23 00:28:00 -0700 | [diff] [blame] | 79 | mExtensions = buffer; |
Romain Guy | bd0e6aa | 2010-07-22 18:50:12 -0700 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | inline bool hasNPot() const { return mHasNPot; } |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 83 | inline bool hasFramebufferFetch() const { return mHasFramebufferFetch; } |
Romain Guy | a60c388 | 2011-08-01 15:28:16 -0700 | [diff] [blame] | 84 | inline bool needsHighpTexCoords() const { return mNeedsHighpTexCoords; } |
Romain Guy | 9c4b79a | 2011-11-10 19:23:58 -0800 | [diff] [blame] | 85 | inline bool hasDiscardFramebuffer() const { return mHasDiscardFramebuffer; } |
Romain Guy | 13631f3 | 2012-01-30 17:41:55 -0800 | [diff] [blame^] | 86 | inline bool hasDebugMarker() const { return mHasDebugMarker; } |
Romain Guy | bd0e6aa | 2010-07-22 18:50:12 -0700 | [diff] [blame] | 87 | |
| 88 | bool hasExtension(const char* extension) const { |
| 89 | const String8 s(extension); |
| 90 | return mExtensionList.indexOf(s) >= 0; |
| 91 | } |
| 92 | |
Romain Guy | 51769a6 | 2010-07-23 00:28:00 -0700 | [diff] [blame] | 93 | void dump() { |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 94 | ALOGD("Supported extensions:\n%s", mExtensions); |
Romain Guy | 51769a6 | 2010-07-23 00:28:00 -0700 | [diff] [blame] | 95 | } |
| 96 | |
Romain Guy | bd0e6aa | 2010-07-22 18:50:12 -0700 | [diff] [blame] | 97 | private: |
| 98 | SortedVector<String8> mExtensionList; |
| 99 | |
Romain Guy | 51769a6 | 2010-07-23 00:28:00 -0700 | [diff] [blame] | 100 | const char* mExtensions; |
| 101 | |
Romain Guy | bd0e6aa | 2010-07-22 18:50:12 -0700 | [diff] [blame] | 102 | bool mHasNPot; |
Romain Guy | a60c388 | 2011-08-01 15:28:16 -0700 | [diff] [blame] | 103 | bool mNeedsHighpTexCoords; |
Romain Guy | a5aed0d | 2010-09-09 14:42:43 -0700 | [diff] [blame] | 104 | bool mHasFramebufferFetch; |
Romain Guy | 9c4b79a | 2011-11-10 19:23:58 -0800 | [diff] [blame] | 105 | bool mHasDiscardFramebuffer; |
Romain Guy | 13631f3 | 2012-01-30 17:41:55 -0800 | [diff] [blame^] | 106 | bool mHasDebugMarker; |
Romain Guy | bd0e6aa | 2010-07-22 18:50:12 -0700 | [diff] [blame] | 107 | }; // class Extensions |
| 108 | |
| 109 | }; // namespace uirenderer |
| 110 | }; // namespace android |
| 111 | |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 112 | #endif // ANDROID_HWUI_EXTENSIONS_H |