blob: a13371abaddf1dbf0d8ba55920127e7b140bd403 [file] [log] [blame]
Jason Samsc460e552009-11-25 13:22:07 -08001/*
2 * Copyright (C) 2009 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
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -070017#ifndef ANDROID_RS_BUILD_FOR_HOST
Jason Samsc460e552009-11-25 13:22:07 -080018#include "rsContext.h"
Jason Samsc460e552009-11-25 13:22:07 -080019#include <GLES/gl.h>
20#include <GLES2/gl2.h>
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -070021#else
22#include "rsContextHostStub.h"
23#include <OpenGL/gl.h>
24#endif
25
Jason Samsc460e552009-11-25 13:22:07 -080026
27using namespace android;
28using namespace android::renderscript;
29
30
31VertexArray::VertexArray()
32{
Jason Samsbe504f22010-01-25 12:31:24 -080033 clearAll();
Jason Samsc460e552009-11-25 13:22:07 -080034}
35
36VertexArray::~VertexArray()
37{
38}
39
40
41void VertexArray::clearAll()
42{
Jason Sams433eca32010-01-06 11:57:52 -080043 for (uint32_t ct=0; ct < RS_MAX_ATTRIBS; ct++) {
44 mAttribs[ct].clear();
45 }
Jason Samsc460e552009-11-25 13:22:07 -080046 mActiveBuffer = 0;
Jason Samsbe504f22010-01-25 12:31:24 -080047 mCount = 0;
Jason Sams433eca32010-01-06 11:57:52 -080048}
49
50VertexArray::Attrib::Attrib()
51{
52 clear();
53}
54
55void VertexArray::Attrib::set(const Attrib &a)
56{
57 buffer = a.buffer;
58 offset = a.offset;
59 type = a.type;
60 size = a.size;
61 stride = a.stride;
62 normalized = a.normalized;
63 name.setTo(a.name);
64}
65
66void VertexArray::Attrib::clear()
67{
68 buffer = 0;
69 offset = 0;
70 type = 0;
71 size = 0;
72 stride = 0;
73 normalized = false;
74 name.setTo("");
Jason Samsc460e552009-11-25 13:22:07 -080075}
76
Jason Samsbe504f22010-01-25 12:31:24 -080077void VertexArray::clear(uint32_t n)
Jason Samsc460e552009-11-25 13:22:07 -080078{
Jason Sams433eca32010-01-06 11:57:52 -080079 mAttribs[n].clear();
Jason Samsc460e552009-11-25 13:22:07 -080080}
81
Jason Sams79f52df2010-06-01 15:47:01 -070082void VertexArray::add(const Attrib &a, uint32_t stride)
Jason Samsc460e552009-11-25 13:22:07 -080083{
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -070084 rsAssert(mCount < RS_MAX_ATTRIBS);
Jason Samsbe504f22010-01-25 12:31:24 -080085 mAttribs[mCount].set(a);
86 mAttribs[mCount].buffer = mActiveBuffer;
87 mAttribs[mCount].stride = stride;
Jason Samsbe504f22010-01-25 12:31:24 -080088 mCount ++;
Jason Samsc460e552009-11-25 13:22:07 -080089}
90
Jason Sams79f52df2010-06-01 15:47:01 -070091void VertexArray::add(uint32_t type, uint32_t size, uint32_t stride, bool normalized, uint32_t offset, const char *name)
Jason Samsc460e552009-11-25 13:22:07 -080092{
Alex Sakhartchoukfb6b6142010-05-21 12:53:13 -070093 rsAssert(mCount < RS_MAX_ATTRIBS);
Jason Samsbe504f22010-01-25 12:31:24 -080094 mAttribs[mCount].clear();
95 mAttribs[mCount].type = type;
96 mAttribs[mCount].size = size;
97 mAttribs[mCount].offset = offset;
98 mAttribs[mCount].normalized = normalized;
99 mAttribs[mCount].buffer = mActiveBuffer;
100 mAttribs[mCount].stride = stride;
Jason Sams79f52df2010-06-01 15:47:01 -0700101 mAttribs[mCount].name.setTo(name);
Jason Samsbe504f22010-01-25 12:31:24 -0800102 mCount ++;
Jason Sams433eca32010-01-06 11:57:52 -0800103}
104
105void VertexArray::logAttrib(uint32_t idx, uint32_t slot) const {
Jason Sams79f52df2010-06-01 15:47:01 -0700106 LOGE("va %i: slot=%i name=%s buf=%i size=%i type=0x%x stride=0x%x norm=%i offset=0x%x", idx, slot,
Jason Sams433eca32010-01-06 11:57:52 -0800107 mAttribs[idx].name.string(),
Jason Samsc460e552009-11-25 13:22:07 -0800108 mAttribs[idx].buffer,
109 mAttribs[idx].size,
110 mAttribs[idx].type,
111 mAttribs[idx].stride,
Jason Samsd01d9702009-12-23 14:35:29 -0800112 mAttribs[idx].normalized,
Jason Samsc460e552009-11-25 13:22:07 -0800113 mAttribs[idx].offset);
114}
115
Jason Samsd01d9702009-12-23 14:35:29 -0800116void VertexArray::setupGL2(const Context *rsc, class VertexArrayState *state, ShaderCache *sc) const
Jason Samsc460e552009-11-25 13:22:07 -0800117{
Jason Sams3eb28f02010-01-27 14:41:43 -0800118 rsc->checkError("VertexArray::setupGL2 start");
Jason Sams79f52df2010-06-01 15:47:01 -0700119 for (uint32_t ct=1; ct <= 0xf/*state->mLastEnableCount*/; ct++) {
Jason Samsc460e552009-11-25 13:22:07 -0800120 glDisableVertexAttribArray(ct);
121 }
122
Jason Sams3eb28f02010-01-27 14:41:43 -0800123 rsc->checkError("VertexArray::setupGL2 disabled");
Jason Samsbe504f22010-01-25 12:31:24 -0800124 for (uint32_t ct=0; ct < mCount; ct++) {
125 uint32_t slot = 0;
Jason Samsbdb04602010-06-17 18:05:38 -0700126
127 if (mAttribs[ct].name[0] == '#') {
128 continue;
129 }
130
Jason Samsbe504f22010-01-25 12:31:24 -0800131 if (sc->isUserVertexProgram()) {
132 slot = sc->vtxAttribSlot(ct);
133 } else {
Jason Sams79f52df2010-06-01 15:47:01 -0700134 if (mAttribs[ct].name == "position") {
135 slot = 0;
136 } else if (mAttribs[ct].name == "color") {
137 slot = 1;
138 } else if (mAttribs[ct].name == "normal") {
139 slot = 2;
140 } else if (mAttribs[ct].name == "pointSize") {
141 slot = 3;
142 } else if (mAttribs[ct].name == "texture0") {
143 slot = 4;
144 } else {
Jason Samsaef14582010-02-08 16:31:39 -0800145 continue;
146 }
Jason Samsc460e552009-11-25 13:22:07 -0800147 }
Jason Samsbe504f22010-01-25 12:31:24 -0800148
Jason Sams976e2832010-06-02 12:40:19 -0700149 //logAttrib(ct, slot);
Jason Samsbe504f22010-01-25 12:31:24 -0800150 glEnableVertexAttribArray(slot);
151 glBindBuffer(GL_ARRAY_BUFFER, mAttribs[ct].buffer);
Jason Samsbe504f22010-01-25 12:31:24 -0800152 glVertexAttribPointer(slot,
153 mAttribs[ct].size,
154 mAttribs[ct].type,
155 mAttribs[ct].normalized,
156 mAttribs[ct].stride,
157 (void *)mAttribs[ct].offset);
Jason Samsc460e552009-11-25 13:22:07 -0800158 }
Jason Sams3eb28f02010-01-27 14:41:43 -0800159 state->mLastEnableCount = mCount;
160 rsc->checkError("VertexArray::setupGL2 done");
Jason Samsc460e552009-11-25 13:22:07 -0800161}
162////////////////////////////////////////////
163
164void VertexArrayState::init(Context *) {
Jason Sams3eb28f02010-01-27 14:41:43 -0800165 mLastEnableCount = 0;
Jason Samsc460e552009-11-25 13:22:07 -0800166}
167