Home | History | Annotate | Download | only in OpenglCodecCommon
      1 /*
      2 * Copyright (C) 2016 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 #ifndef _GL_TEXTURE_SHARED_DATA_H_
     17 #define _GL_TEXTURE_SHARED_DATA_H_
     18 
     19 #include <GLES/gl.h>
     20 #include <map>
     21 
     22 struct TextureDims {
     23     std::map<GLsizei, GLsizei> widths;
     24     std::map<GLsizei, GLsizei> heights;
     25     std::map<GLsizei, GLsizei> depths;
     26 };
     27 
     28 struct TextureRec {
     29     GLuint id;
     30     GLenum target;
     31     GLint internalformat;
     32     GLenum format;
     33     GLenum type;
     34     GLsizei multisamples;
     35     TextureDims* dims;
     36     bool immutable;
     37     bool boundEGLImage;
     38 };
     39 
     40 typedef std::map<GLuint, TextureRec*> SharedTextureDataMap;
     41 
     42 #endif
     43