blob: dda56d79db350b291cf4e5bd3479e16fea93db10 [file] [log] [blame]
Jason Sams326e0dd2009-05-22 14:03:28 -07001/*
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
17#include "rsContext.h"
18#include "rsProgramVertex.h"
19
Jason Sams1aa5a4e2009-06-22 17:15:15 -070020#include <GLES/gl.h>
21#include <GLES/glext.h>
22
Jason Sams326e0dd2009-05-22 14:03:28 -070023using namespace android;
24using namespace android::renderscript;
25
26
27ProgramVertex::ProgramVertex(Element *in, Element *out) :
28 Program(in, out)
29{
30 mTextureMatrixEnable = false;
Jason Samsb5909ce2009-07-21 12:20:54 -070031 mLightCount = 0;
Jason Sams326e0dd2009-05-22 14:03:28 -070032}
33
34ProgramVertex::~ProgramVertex()
35{
36}
37
Jason Sams56bc1af2009-06-16 17:49:58 -070038static void logMatrix(const char *txt, const float *f)
39{
Jason Sams992a0b72009-06-23 12:22:47 -070040 LOGV("Matrix %s, %p", txt, f);
41 LOGV("%6.2f, %6.2f, %6.2f, %6.2f", f[0], f[4], f[8], f[12]);
42 LOGV("%6.2f, %6.2f, %6.2f, %6.2f", f[1], f[5], f[9], f[13]);
43 LOGV("%6.2f, %6.2f, %6.2f, %6.2f", f[2], f[6], f[10], f[14]);
44 LOGV("%6.2f, %6.2f, %6.2f, %6.2f", f[3], f[7], f[11], f[15]);
Jason Sams56bc1af2009-06-16 17:49:58 -070045}
46
Jason Samsafcb25c2009-08-25 11:34:49 -070047void ProgramVertex::setupGL(const Context *rsc, ProgramVertexState *state)
Jason Sams326e0dd2009-05-22 14:03:28 -070048{
Jason Samscfb1d112009-08-05 13:57:03 -070049 if ((state->mLast.get() == this) && !mDirty) {
50 return;
51 }
52 state->mLast.set(this);
53
54 const float *f = static_cast<const float *>(mConstants->getPtr());
Jason Sams326e0dd2009-05-22 14:03:28 -070055
56 glMatrixMode(GL_TEXTURE);
57 if (mTextureMatrixEnable) {
58 glLoadMatrixf(&f[RS_PROGRAM_VERTEX_TEXTURE_OFFSET]);
59 } else {
60 glLoadIdentity();
61 }
62
Jason Samsb5909ce2009-07-21 12:20:54 -070063 glMatrixMode(GL_MODELVIEW);
64 glLoadIdentity();
65 if (mLightCount) {
Romain Guy48b7edc2009-08-06 22:52:13 -070066 int v = 0;
Jason Samsb5909ce2009-07-21 12:20:54 -070067 glEnable(GL_LIGHTING);
68 glLightModelxv(GL_LIGHT_MODEL_TWO_SIDE, &v);
69 for (uint32_t ct = 0; ct < mLightCount; ct++) {
70 const Light *l = mLights[ct].get();
71 glEnable(GL_LIGHT0 + ct);
72 l->setupGL(ct);
73 }
74 for (uint32_t ct = mLightCount; ct < MAX_LIGHTS; ct++) {
75 glDisable(GL_LIGHT0 + ct);
76 }
77 } else {
78 glDisable(GL_LIGHTING);
79 }
Jason Samscfb1d112009-08-05 13:57:03 -070080
Jason Samsb5909ce2009-07-21 12:20:54 -070081 if (!f) {
82 LOGE("Must bind constants to vertex program");
83 }
Jason Sams326e0dd2009-05-22 14:03:28 -070084
85 glMatrixMode(GL_PROJECTION);
Jason Sams56bc1af2009-06-16 17:49:58 -070086 glLoadMatrixf(&f[RS_PROGRAM_VERTEX_PROJECTION_OFFSET]);
Jason Sams326e0dd2009-05-22 14:03:28 -070087 glMatrixMode(GL_MODELVIEW);
Jason Sams56bc1af2009-06-16 17:49:58 -070088 glLoadMatrixf(&f[RS_PROGRAM_VERTEX_MODELVIEW_OFFSET]);
Jason Sams326e0dd2009-05-22 14:03:28 -070089
Jason Samscfb1d112009-08-05 13:57:03 -070090 mDirty = false;
Jason Sams326e0dd2009-05-22 14:03:28 -070091}
92
Jason Samsb5909ce2009-07-21 12:20:54 -070093void ProgramVertex::addLight(const Light *l)
94{
95 if (mLightCount < MAX_LIGHTS) {
96 mLights[mLightCount].set(l);
97 mLightCount++;
98 }
99}
100
Jason Samsc9d43db2009-07-28 12:02:16 -0700101void ProgramVertex::setProjectionMatrix(const rsc_Matrix *m) const
102{
Jason Samscfb1d112009-08-05 13:57:03 -0700103 float *f = static_cast<float *>(mConstants->getPtr());
Jason Samsc9d43db2009-07-28 12:02:16 -0700104 memcpy(&f[RS_PROGRAM_VERTEX_PROJECTION_OFFSET], m, sizeof(rsc_Matrix));
Jason Samscfb1d112009-08-05 13:57:03 -0700105 mDirty = true;
Jason Samsc9d43db2009-07-28 12:02:16 -0700106}
107
108void ProgramVertex::setModelviewMatrix(const rsc_Matrix *m) const
109{
Jason Samscfb1d112009-08-05 13:57:03 -0700110 float *f = static_cast<float *>(mConstants->getPtr());
Jason Samsc9d43db2009-07-28 12:02:16 -0700111 memcpy(&f[RS_PROGRAM_VERTEX_MODELVIEW_OFFSET], m, sizeof(rsc_Matrix));
Jason Samscfb1d112009-08-05 13:57:03 -0700112 mDirty = true;
Jason Samsc9d43db2009-07-28 12:02:16 -0700113}
114
115void ProgramVertex::setTextureMatrix(const rsc_Matrix *m) const
116{
Jason Samscfb1d112009-08-05 13:57:03 -0700117 float *f = static_cast<float *>(mConstants->getPtr());
Jason Samsc9d43db2009-07-28 12:02:16 -0700118 memcpy(&f[RS_PROGRAM_VERTEX_TEXTURE_OFFSET], m, sizeof(rsc_Matrix));
Jason Samscfb1d112009-08-05 13:57:03 -0700119 mDirty = true;
Jason Samsc9d43db2009-07-28 12:02:16 -0700120}
121
122
Jason Sams326e0dd2009-05-22 14:03:28 -0700123
124ProgramVertexState::ProgramVertexState()
125{
126 mPV = NULL;
127}
128
129ProgramVertexState::~ProgramVertexState()
130{
131 delete mPV;
132}
133
Jason Sams8ce125b2009-06-17 16:52:59 -0700134void ProgramVertexState::init(Context *rsc, int32_t w, int32_t h)
135{
Jason Sams8287c0c2009-09-24 12:33:45 -0700136 rsi_ElementBegin(rsc);
137 rsi_ElementAdd(rsc, RS_KIND_USER, RS_TYPE_FLOAT, false, 32, NULL);
138 RsElement e = rsi_ElementCreate(rsc);
139
140 rsi_TypeBegin(rsc, e);
141 rsi_TypeAdd(rsc, RS_DIMENSION_X, 48);
142 mAllocType = rsi_TypeCreate(rsc);
143
Jason Sams8ce125b2009-06-17 16:52:59 -0700144 ProgramVertex *pv = new ProgramVertex(NULL, NULL);
Jason Sams8287c0c2009-09-24 12:33:45 -0700145 Allocation *alloc = (Allocation *)rsi_AllocationCreateTyped(rsc, mAllocType);
Jason Sams8ce125b2009-06-17 16:52:59 -0700146 mDefaultAlloc.set(alloc);
147 mDefault.set(pv);
148
Jason Samscfb1d112009-08-05 13:57:03 -0700149 pv->bindAllocation(alloc);
150
Jason Sams8ce125b2009-06-17 16:52:59 -0700151 Matrix m;
152 m.loadOrtho(0,w, h,0, -1,1);
Jason Sams9397e302009-08-27 20:23:34 -0700153 alloc->subData(RS_PROGRAM_VERTEX_PROJECTION_OFFSET, 16, &m.m[0], 16*4);
Jason Sams8ce125b2009-06-17 16:52:59 -0700154
155 m.loadIdentity();
Jason Sams9397e302009-08-27 20:23:34 -0700156 alloc->subData(RS_PROGRAM_VERTEX_MODELVIEW_OFFSET, 16, &m.m[0], 16*4);
Jason Sams8ce125b2009-06-17 16:52:59 -0700157}
Jason Sams326e0dd2009-05-22 14:03:28 -0700158
159
160namespace android {
161namespace renderscript {
162
163void rsi_ProgramVertexBegin(Context *rsc, RsElement in, RsElement out)
164{
165 delete rsc->mStateVertex.mPV;
166 rsc->mStateVertex.mPV = new ProgramVertex((Element *)in, (Element *)out);
167}
168
169RsProgramVertex rsi_ProgramVertexCreate(Context *rsc)
170{
171 ProgramVertex *pv = rsc->mStateVertex.mPV;
Jason Sams9397e302009-08-27 20:23:34 -0700172 pv->incUserRef();
Jason Sams326e0dd2009-05-22 14:03:28 -0700173 rsc->mStateVertex.mPV = 0;
Jason Sams326e0dd2009-05-22 14:03:28 -0700174 return pv;
175}
176
Jason Samscfb1d112009-08-05 13:57:03 -0700177void rsi_ProgramVertexBindAllocation(Context *rsc, RsProgramVertex vpgm, RsAllocation constants)
Jason Sams326e0dd2009-05-22 14:03:28 -0700178{
179 ProgramVertex *pv = static_cast<ProgramVertex *>(vpgm);
Jason Samscfb1d112009-08-05 13:57:03 -0700180 pv->bindAllocation(static_cast<Allocation *>(constants));
Jason Sams326e0dd2009-05-22 14:03:28 -0700181}
182
Jason Sams326e0dd2009-05-22 14:03:28 -0700183void rsi_ProgramVertexSetTextureMatrixEnable(Context *rsc, bool enable)
184{
185 rsc->mStateVertex.mPV->setTextureMatrixEnable(enable);
186}
187
Jason Samsb5909ce2009-07-21 12:20:54 -0700188void rsi_ProgramVertexAddLight(Context *rsc, RsLight light)
189{
190 rsc->mStateVertex.mPV->addLight(static_cast<const Light *>(light));
191}
Jason Sams326e0dd2009-05-22 14:03:28 -0700192
193
194}
195}