blob: 64f75458dfe4fbb5ea3206c7a7c77a0fdfe3162d [file] [log] [blame]
Siva Velusamydb974682011-11-30 15:05:37 -08001/*
2 * Copyright 2011, 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
Siva Velusamydb974682011-11-30 15:05:37 -080017#ifndef __GLTRACE_FIXUP_H_
18#define __GLTRACE_FIXUP_H_
19
Siva Velusamy5ed919e2011-12-15 17:32:05 -080020#include <utils/Timers.h>
21
Siva Velusamy1598ef92011-12-07 16:00:58 -080022#include "gltrace.pb.h"
23#include "gltrace_context.h"
24
Siva Velusamydb974682011-11-30 15:05:37 -080025namespace android {
26namespace gltrace {
27
Siva Velusamy5ed919e2011-12-15 17:32:05 -080028void fixupGLMessage(GLTraceContext *curContext, nsecs_t start, nsecs_t end, GLMessage *message);
Siva Velusamy1e81e712011-12-14 12:19:56 -080029void fixup_addFBContents(GLTraceContext *curContext, GLMessage *message, FBBinding fbToRead);
Siva Velusamydb974682011-11-30 15:05:37 -080030
31};
32};
33
34#endif